@praxisui/list 9.0.0-beta.85 → 9.0.0-beta.88
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 +2625 -165
- package/fesm2022/praxisui-list.mjs +1969 -1942
- package/package.json +6 -6
- package/types/praxisui-list.d.ts +13 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-07-
|
|
3
|
+
"generatedAt": "2026-07-23T02:50:28.389Z",
|
|
4
4
|
"packageName": "@praxisui/list",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.88",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -3849,6 +3849,269 @@
|
|
|
3849
3849
|
"ambiguityPolicy": "fail",
|
|
3850
3850
|
"required": false
|
|
3851
3851
|
},
|
|
3852
|
+
"inputSchema": {
|
|
3853
|
+
"type": "object",
|
|
3854
|
+
"required": [
|
|
3855
|
+
"type",
|
|
3856
|
+
"expr"
|
|
3857
|
+
],
|
|
3858
|
+
"properties": {
|
|
3859
|
+
"type": {
|
|
3860
|
+
"enum": [
|
|
3861
|
+
"text",
|
|
3862
|
+
"icon",
|
|
3863
|
+
"image",
|
|
3864
|
+
"chip",
|
|
3865
|
+
"rating",
|
|
3866
|
+
"currency",
|
|
3867
|
+
"date",
|
|
3868
|
+
"html",
|
|
3869
|
+
"slot",
|
|
3870
|
+
"metric",
|
|
3871
|
+
"compose",
|
|
3872
|
+
"component"
|
|
3873
|
+
]
|
|
3874
|
+
},
|
|
3875
|
+
"expr": {
|
|
3876
|
+
"type": "string"
|
|
3877
|
+
},
|
|
3878
|
+
"class": {
|
|
3879
|
+
"type": "string"
|
|
3880
|
+
},
|
|
3881
|
+
"style": {
|
|
3882
|
+
"type": "string"
|
|
3883
|
+
},
|
|
3884
|
+
"color": {
|
|
3885
|
+
"type": "string"
|
|
3886
|
+
},
|
|
3887
|
+
"variant": {
|
|
3888
|
+
"enum": [
|
|
3889
|
+
"filled",
|
|
3890
|
+
"outlined"
|
|
3891
|
+
]
|
|
3892
|
+
},
|
|
3893
|
+
"imageAlt": {
|
|
3894
|
+
"type": "string"
|
|
3895
|
+
},
|
|
3896
|
+
"props": {
|
|
3897
|
+
"type": "object",
|
|
3898
|
+
"properties": {
|
|
3899
|
+
"rating": {
|
|
3900
|
+
"type": "object",
|
|
3901
|
+
"properties": {
|
|
3902
|
+
"max": {
|
|
3903
|
+
"type": "number"
|
|
3904
|
+
},
|
|
3905
|
+
"size": {
|
|
3906
|
+
"type": "number"
|
|
3907
|
+
},
|
|
3908
|
+
"color": {
|
|
3909
|
+
"type": "string"
|
|
3910
|
+
}
|
|
3911
|
+
}
|
|
3912
|
+
},
|
|
3913
|
+
"metric": {
|
|
3914
|
+
"type": "object",
|
|
3915
|
+
"properties": {
|
|
3916
|
+
"label": {
|
|
3917
|
+
"type": "string"
|
|
3918
|
+
},
|
|
3919
|
+
"valueExpr": {
|
|
3920
|
+
"type": "string"
|
|
3921
|
+
},
|
|
3922
|
+
"caption": {
|
|
3923
|
+
"type": "string"
|
|
3924
|
+
},
|
|
3925
|
+
"subcaption": {
|
|
3926
|
+
"type": "string"
|
|
3927
|
+
},
|
|
3928
|
+
"captionPosition": {
|
|
3929
|
+
"enum": [
|
|
3930
|
+
"below-value",
|
|
3931
|
+
"below-progress"
|
|
3932
|
+
]
|
|
3933
|
+
},
|
|
3934
|
+
"icon": {
|
|
3935
|
+
"type": "string"
|
|
3936
|
+
},
|
|
3937
|
+
"iconExpr": {
|
|
3938
|
+
"type": "string"
|
|
3939
|
+
},
|
|
3940
|
+
"tone": {
|
|
3941
|
+
"type": "string"
|
|
3942
|
+
},
|
|
3943
|
+
"toneExpr": {
|
|
3944
|
+
"type": "string"
|
|
3945
|
+
},
|
|
3946
|
+
"layout": {
|
|
3947
|
+
"enum": [
|
|
3948
|
+
"value-only",
|
|
3949
|
+
"value+caption",
|
|
3950
|
+
"icon+value+caption",
|
|
3951
|
+
"stacked-center"
|
|
3952
|
+
]
|
|
3953
|
+
},
|
|
3954
|
+
"align": {
|
|
3955
|
+
"enum": [
|
|
3956
|
+
"start",
|
|
3957
|
+
"center",
|
|
3958
|
+
"end"
|
|
3959
|
+
]
|
|
3960
|
+
},
|
|
3961
|
+
"progress": {
|
|
3962
|
+
"type": "object",
|
|
3963
|
+
"properties": {
|
|
3964
|
+
"valueExpr": {
|
|
3965
|
+
"type": "string"
|
|
3966
|
+
},
|
|
3967
|
+
"max": {
|
|
3968
|
+
"type": "number"
|
|
3969
|
+
},
|
|
3970
|
+
"mode": {
|
|
3971
|
+
"enum": [
|
|
3972
|
+
"determinate",
|
|
3973
|
+
"indeterminate"
|
|
3974
|
+
]
|
|
3975
|
+
},
|
|
3976
|
+
"color": {
|
|
3977
|
+
"type": "string"
|
|
3978
|
+
},
|
|
3979
|
+
"colorExpr": {
|
|
3980
|
+
"type": "string"
|
|
3981
|
+
},
|
|
3982
|
+
"trackColor": {
|
|
3983
|
+
"type": "string"
|
|
3984
|
+
}
|
|
3985
|
+
}
|
|
3986
|
+
},
|
|
3987
|
+
"valueClass": {
|
|
3988
|
+
"type": "string"
|
|
3989
|
+
},
|
|
3990
|
+
"valueStyle": {
|
|
3991
|
+
"type": "string"
|
|
3992
|
+
},
|
|
3993
|
+
"showBar": {
|
|
3994
|
+
"type": "boolean"
|
|
3995
|
+
},
|
|
3996
|
+
"barValueExpr": {
|
|
3997
|
+
"type": "string"
|
|
3998
|
+
},
|
|
3999
|
+
"barColor": {
|
|
4000
|
+
"type": "string"
|
|
4001
|
+
},
|
|
4002
|
+
"barVariant": {
|
|
4003
|
+
"enum": [
|
|
4004
|
+
"determinate",
|
|
4005
|
+
"indeterminate"
|
|
4006
|
+
]
|
|
4007
|
+
},
|
|
4008
|
+
"legendExpr": {
|
|
4009
|
+
"type": "string"
|
|
4010
|
+
},
|
|
4011
|
+
"iconPosition": {
|
|
4012
|
+
"enum": [
|
|
4013
|
+
"left",
|
|
4014
|
+
"right",
|
|
4015
|
+
"top"
|
|
4016
|
+
]
|
|
4017
|
+
},
|
|
4018
|
+
"iconColorExpr": {
|
|
4019
|
+
"type": "string"
|
|
4020
|
+
}
|
|
4021
|
+
}
|
|
4022
|
+
},
|
|
4023
|
+
"compose": {
|
|
4024
|
+
"type": "object",
|
|
4025
|
+
"properties": {
|
|
4026
|
+
"items": {
|
|
4027
|
+
"type": "array",
|
|
4028
|
+
"items": {
|
|
4029
|
+
"type": "object"
|
|
4030
|
+
}
|
|
4031
|
+
},
|
|
4032
|
+
"nodes": {
|
|
4033
|
+
"type": "array",
|
|
4034
|
+
"items": {
|
|
4035
|
+
"type": "object"
|
|
4036
|
+
}
|
|
4037
|
+
},
|
|
4038
|
+
"direction": {
|
|
4039
|
+
"enum": [
|
|
4040
|
+
"row",
|
|
4041
|
+
"column"
|
|
4042
|
+
]
|
|
4043
|
+
},
|
|
4044
|
+
"orientation": {
|
|
4045
|
+
"enum": [
|
|
4046
|
+
"horizontal",
|
|
4047
|
+
"vertical"
|
|
4048
|
+
]
|
|
4049
|
+
},
|
|
4050
|
+
"align": {
|
|
4051
|
+
"enum": [
|
|
4052
|
+
"start",
|
|
4053
|
+
"center",
|
|
4054
|
+
"end"
|
|
4055
|
+
]
|
|
4056
|
+
},
|
|
4057
|
+
"gap": {
|
|
4058
|
+
"type": "string"
|
|
4059
|
+
},
|
|
4060
|
+
"wrap": {
|
|
4061
|
+
"type": "boolean"
|
|
4062
|
+
},
|
|
4063
|
+
"separator": {
|
|
4064
|
+
"type": "string"
|
|
4065
|
+
},
|
|
4066
|
+
"class": {
|
|
4067
|
+
"type": "string"
|
|
4068
|
+
},
|
|
4069
|
+
"style": {
|
|
4070
|
+
"type": "string"
|
|
4071
|
+
}
|
|
4072
|
+
}
|
|
4073
|
+
},
|
|
4074
|
+
"component": {
|
|
4075
|
+
"type": "object",
|
|
4076
|
+
"required": [
|
|
4077
|
+
"id"
|
|
4078
|
+
],
|
|
4079
|
+
"properties": {
|
|
4080
|
+
"id": {
|
|
4081
|
+
"type": "string"
|
|
4082
|
+
},
|
|
4083
|
+
"inputs": {
|
|
4084
|
+
"type": "object"
|
|
4085
|
+
},
|
|
4086
|
+
"class": {
|
|
4087
|
+
"type": "string"
|
|
4088
|
+
},
|
|
4089
|
+
"style": {
|
|
4090
|
+
"type": "string"
|
|
4091
|
+
}
|
|
4092
|
+
}
|
|
4093
|
+
}
|
|
4094
|
+
}
|
|
4095
|
+
},
|
|
4096
|
+
"badge": {
|
|
4097
|
+
"type": "object",
|
|
4098
|
+
"properties": {
|
|
4099
|
+
"expr": {
|
|
4100
|
+
"type": "string"
|
|
4101
|
+
},
|
|
4102
|
+
"color": {
|
|
4103
|
+
"type": "string"
|
|
4104
|
+
},
|
|
4105
|
+
"variant": {
|
|
4106
|
+
"enum": [
|
|
4107
|
+
"filled",
|
|
4108
|
+
"outlined"
|
|
4109
|
+
]
|
|
4110
|
+
}
|
|
4111
|
+
}
|
|
4112
|
+
}
|
|
4113
|
+
}
|
|
4114
|
+
},
|
|
3852
4115
|
"effects": [
|
|
3853
4116
|
{
|
|
3854
4117
|
"kind": "merge-object",
|
|
@@ -4020,6 +4283,269 @@
|
|
|
4020
4283
|
"sectionHeader",
|
|
4021
4284
|
"emptyState"
|
|
4022
4285
|
]
|
|
4286
|
+
},
|
|
4287
|
+
"template": {
|
|
4288
|
+
"type": "object",
|
|
4289
|
+
"required": [
|
|
4290
|
+
"type",
|
|
4291
|
+
"expr"
|
|
4292
|
+
],
|
|
4293
|
+
"properties": {
|
|
4294
|
+
"type": {
|
|
4295
|
+
"enum": [
|
|
4296
|
+
"text",
|
|
4297
|
+
"icon",
|
|
4298
|
+
"image",
|
|
4299
|
+
"chip",
|
|
4300
|
+
"rating",
|
|
4301
|
+
"currency",
|
|
4302
|
+
"date",
|
|
4303
|
+
"html",
|
|
4304
|
+
"slot",
|
|
4305
|
+
"metric",
|
|
4306
|
+
"compose",
|
|
4307
|
+
"component"
|
|
4308
|
+
]
|
|
4309
|
+
},
|
|
4310
|
+
"expr": {
|
|
4311
|
+
"type": "string"
|
|
4312
|
+
},
|
|
4313
|
+
"class": {
|
|
4314
|
+
"type": "string"
|
|
4315
|
+
},
|
|
4316
|
+
"style": {
|
|
4317
|
+
"type": "string"
|
|
4318
|
+
},
|
|
4319
|
+
"color": {
|
|
4320
|
+
"type": "string"
|
|
4321
|
+
},
|
|
4322
|
+
"variant": {
|
|
4323
|
+
"enum": [
|
|
4324
|
+
"filled",
|
|
4325
|
+
"outlined"
|
|
4326
|
+
]
|
|
4327
|
+
},
|
|
4328
|
+
"imageAlt": {
|
|
4329
|
+
"type": "string"
|
|
4330
|
+
},
|
|
4331
|
+
"props": {
|
|
4332
|
+
"type": "object",
|
|
4333
|
+
"properties": {
|
|
4334
|
+
"rating": {
|
|
4335
|
+
"type": "object",
|
|
4336
|
+
"properties": {
|
|
4337
|
+
"max": {
|
|
4338
|
+
"type": "number"
|
|
4339
|
+
},
|
|
4340
|
+
"size": {
|
|
4341
|
+
"type": "number"
|
|
4342
|
+
},
|
|
4343
|
+
"color": {
|
|
4344
|
+
"type": "string"
|
|
4345
|
+
}
|
|
4346
|
+
}
|
|
4347
|
+
},
|
|
4348
|
+
"metric": {
|
|
4349
|
+
"type": "object",
|
|
4350
|
+
"properties": {
|
|
4351
|
+
"label": {
|
|
4352
|
+
"type": "string"
|
|
4353
|
+
},
|
|
4354
|
+
"valueExpr": {
|
|
4355
|
+
"type": "string"
|
|
4356
|
+
},
|
|
4357
|
+
"caption": {
|
|
4358
|
+
"type": "string"
|
|
4359
|
+
},
|
|
4360
|
+
"subcaption": {
|
|
4361
|
+
"type": "string"
|
|
4362
|
+
},
|
|
4363
|
+
"captionPosition": {
|
|
4364
|
+
"enum": [
|
|
4365
|
+
"below-value",
|
|
4366
|
+
"below-progress"
|
|
4367
|
+
]
|
|
4368
|
+
},
|
|
4369
|
+
"icon": {
|
|
4370
|
+
"type": "string"
|
|
4371
|
+
},
|
|
4372
|
+
"iconExpr": {
|
|
4373
|
+
"type": "string"
|
|
4374
|
+
},
|
|
4375
|
+
"tone": {
|
|
4376
|
+
"type": "string"
|
|
4377
|
+
},
|
|
4378
|
+
"toneExpr": {
|
|
4379
|
+
"type": "string"
|
|
4380
|
+
},
|
|
4381
|
+
"layout": {
|
|
4382
|
+
"enum": [
|
|
4383
|
+
"value-only",
|
|
4384
|
+
"value+caption",
|
|
4385
|
+
"icon+value+caption",
|
|
4386
|
+
"stacked-center"
|
|
4387
|
+
]
|
|
4388
|
+
},
|
|
4389
|
+
"align": {
|
|
4390
|
+
"enum": [
|
|
4391
|
+
"start",
|
|
4392
|
+
"center",
|
|
4393
|
+
"end"
|
|
4394
|
+
]
|
|
4395
|
+
},
|
|
4396
|
+
"progress": {
|
|
4397
|
+
"type": "object",
|
|
4398
|
+
"properties": {
|
|
4399
|
+
"valueExpr": {
|
|
4400
|
+
"type": "string"
|
|
4401
|
+
},
|
|
4402
|
+
"max": {
|
|
4403
|
+
"type": "number"
|
|
4404
|
+
},
|
|
4405
|
+
"mode": {
|
|
4406
|
+
"enum": [
|
|
4407
|
+
"determinate",
|
|
4408
|
+
"indeterminate"
|
|
4409
|
+
]
|
|
4410
|
+
},
|
|
4411
|
+
"color": {
|
|
4412
|
+
"type": "string"
|
|
4413
|
+
},
|
|
4414
|
+
"colorExpr": {
|
|
4415
|
+
"type": "string"
|
|
4416
|
+
},
|
|
4417
|
+
"trackColor": {
|
|
4418
|
+
"type": "string"
|
|
4419
|
+
}
|
|
4420
|
+
}
|
|
4421
|
+
},
|
|
4422
|
+
"valueClass": {
|
|
4423
|
+
"type": "string"
|
|
4424
|
+
},
|
|
4425
|
+
"valueStyle": {
|
|
4426
|
+
"type": "string"
|
|
4427
|
+
},
|
|
4428
|
+
"showBar": {
|
|
4429
|
+
"type": "boolean"
|
|
4430
|
+
},
|
|
4431
|
+
"barValueExpr": {
|
|
4432
|
+
"type": "string"
|
|
4433
|
+
},
|
|
4434
|
+
"barColor": {
|
|
4435
|
+
"type": "string"
|
|
4436
|
+
},
|
|
4437
|
+
"barVariant": {
|
|
4438
|
+
"enum": [
|
|
4439
|
+
"determinate",
|
|
4440
|
+
"indeterminate"
|
|
4441
|
+
]
|
|
4442
|
+
},
|
|
4443
|
+
"legendExpr": {
|
|
4444
|
+
"type": "string"
|
|
4445
|
+
},
|
|
4446
|
+
"iconPosition": {
|
|
4447
|
+
"enum": [
|
|
4448
|
+
"left",
|
|
4449
|
+
"right",
|
|
4450
|
+
"top"
|
|
4451
|
+
]
|
|
4452
|
+
},
|
|
4453
|
+
"iconColorExpr": {
|
|
4454
|
+
"type": "string"
|
|
4455
|
+
}
|
|
4456
|
+
}
|
|
4457
|
+
},
|
|
4458
|
+
"compose": {
|
|
4459
|
+
"type": "object",
|
|
4460
|
+
"properties": {
|
|
4461
|
+
"items": {
|
|
4462
|
+
"type": "array",
|
|
4463
|
+
"items": {
|
|
4464
|
+
"type": "object"
|
|
4465
|
+
}
|
|
4466
|
+
},
|
|
4467
|
+
"nodes": {
|
|
4468
|
+
"type": "array",
|
|
4469
|
+
"items": {
|
|
4470
|
+
"type": "object"
|
|
4471
|
+
}
|
|
4472
|
+
},
|
|
4473
|
+
"direction": {
|
|
4474
|
+
"enum": [
|
|
4475
|
+
"row",
|
|
4476
|
+
"column"
|
|
4477
|
+
]
|
|
4478
|
+
},
|
|
4479
|
+
"orientation": {
|
|
4480
|
+
"enum": [
|
|
4481
|
+
"horizontal",
|
|
4482
|
+
"vertical"
|
|
4483
|
+
]
|
|
4484
|
+
},
|
|
4485
|
+
"align": {
|
|
4486
|
+
"enum": [
|
|
4487
|
+
"start",
|
|
4488
|
+
"center",
|
|
4489
|
+
"end"
|
|
4490
|
+
]
|
|
4491
|
+
},
|
|
4492
|
+
"gap": {
|
|
4493
|
+
"type": "string"
|
|
4494
|
+
},
|
|
4495
|
+
"wrap": {
|
|
4496
|
+
"type": "boolean"
|
|
4497
|
+
},
|
|
4498
|
+
"separator": {
|
|
4499
|
+
"type": "string"
|
|
4500
|
+
},
|
|
4501
|
+
"class": {
|
|
4502
|
+
"type": "string"
|
|
4503
|
+
},
|
|
4504
|
+
"style": {
|
|
4505
|
+
"type": "string"
|
|
4506
|
+
}
|
|
4507
|
+
}
|
|
4508
|
+
},
|
|
4509
|
+
"component": {
|
|
4510
|
+
"type": "object",
|
|
4511
|
+
"required": [
|
|
4512
|
+
"id"
|
|
4513
|
+
],
|
|
4514
|
+
"properties": {
|
|
4515
|
+
"id": {
|
|
4516
|
+
"type": "string"
|
|
4517
|
+
},
|
|
4518
|
+
"inputs": {
|
|
4519
|
+
"type": "object"
|
|
4520
|
+
},
|
|
4521
|
+
"class": {
|
|
4522
|
+
"type": "string"
|
|
4523
|
+
},
|
|
4524
|
+
"style": {
|
|
4525
|
+
"type": "string"
|
|
4526
|
+
}
|
|
4527
|
+
}
|
|
4528
|
+
}
|
|
4529
|
+
}
|
|
4530
|
+
},
|
|
4531
|
+
"badge": {
|
|
4532
|
+
"type": "object",
|
|
4533
|
+
"properties": {
|
|
4534
|
+
"expr": {
|
|
4535
|
+
"type": "string"
|
|
4536
|
+
},
|
|
4537
|
+
"color": {
|
|
4538
|
+
"type": "string"
|
|
4539
|
+
},
|
|
4540
|
+
"variant": {
|
|
4541
|
+
"enum": [
|
|
4542
|
+
"filled",
|
|
4543
|
+
"outlined"
|
|
4544
|
+
]
|
|
4545
|
+
}
|
|
4546
|
+
}
|
|
4547
|
+
}
|
|
4548
|
+
}
|
|
4023
4549
|
}
|
|
4024
4550
|
}
|
|
4025
4551
|
},
|
|
@@ -4056,7 +4582,286 @@
|
|
|
4056
4582
|
"template"
|
|
4057
4583
|
],
|
|
4058
4584
|
"properties": {
|
|
4059
|
-
"slot": {
|
|
4585
|
+
"slot": {
|
|
4586
|
+
"enum": [
|
|
4587
|
+
"leading",
|
|
4588
|
+
"primary",
|
|
4589
|
+
"secondary",
|
|
4590
|
+
"meta",
|
|
4591
|
+
"trailing",
|
|
4592
|
+
"identity",
|
|
4593
|
+
"balance",
|
|
4594
|
+
"limit",
|
|
4595
|
+
"risk",
|
|
4596
|
+
"alerts",
|
|
4597
|
+
"owner",
|
|
4598
|
+
"sectionHeader",
|
|
4599
|
+
"emptyState"
|
|
4600
|
+
]
|
|
4601
|
+
},
|
|
4602
|
+
"template": {
|
|
4603
|
+
"type": "object",
|
|
4604
|
+
"required": [
|
|
4605
|
+
"type",
|
|
4606
|
+
"expr"
|
|
4607
|
+
],
|
|
4608
|
+
"properties": {
|
|
4609
|
+
"type": {
|
|
4610
|
+
"enum": [
|
|
4611
|
+
"text",
|
|
4612
|
+
"icon",
|
|
4613
|
+
"image",
|
|
4614
|
+
"chip",
|
|
4615
|
+
"rating",
|
|
4616
|
+
"currency",
|
|
4617
|
+
"date",
|
|
4618
|
+
"html",
|
|
4619
|
+
"slot",
|
|
4620
|
+
"metric",
|
|
4621
|
+
"compose",
|
|
4622
|
+
"component"
|
|
4623
|
+
]
|
|
4624
|
+
},
|
|
4625
|
+
"expr": {
|
|
4626
|
+
"type": "string"
|
|
4627
|
+
},
|
|
4628
|
+
"class": {
|
|
4629
|
+
"type": "string"
|
|
4630
|
+
},
|
|
4631
|
+
"style": {
|
|
4632
|
+
"type": "string"
|
|
4633
|
+
},
|
|
4634
|
+
"color": {
|
|
4635
|
+
"type": "string"
|
|
4636
|
+
},
|
|
4637
|
+
"variant": {
|
|
4638
|
+
"enum": [
|
|
4639
|
+
"filled",
|
|
4640
|
+
"outlined"
|
|
4641
|
+
]
|
|
4642
|
+
},
|
|
4643
|
+
"imageAlt": {
|
|
4644
|
+
"type": "string"
|
|
4645
|
+
},
|
|
4646
|
+
"props": {
|
|
4647
|
+
"type": "object",
|
|
4648
|
+
"properties": {
|
|
4649
|
+
"rating": {
|
|
4650
|
+
"type": "object",
|
|
4651
|
+
"properties": {
|
|
4652
|
+
"max": {
|
|
4653
|
+
"type": "number"
|
|
4654
|
+
},
|
|
4655
|
+
"size": {
|
|
4656
|
+
"type": "number"
|
|
4657
|
+
},
|
|
4658
|
+
"color": {
|
|
4659
|
+
"type": "string"
|
|
4660
|
+
}
|
|
4661
|
+
}
|
|
4662
|
+
},
|
|
4663
|
+
"metric": {
|
|
4664
|
+
"type": "object",
|
|
4665
|
+
"properties": {
|
|
4666
|
+
"label": {
|
|
4667
|
+
"type": "string"
|
|
4668
|
+
},
|
|
4669
|
+
"valueExpr": {
|
|
4670
|
+
"type": "string"
|
|
4671
|
+
},
|
|
4672
|
+
"caption": {
|
|
4673
|
+
"type": "string"
|
|
4674
|
+
},
|
|
4675
|
+
"subcaption": {
|
|
4676
|
+
"type": "string"
|
|
4677
|
+
},
|
|
4678
|
+
"captionPosition": {
|
|
4679
|
+
"enum": [
|
|
4680
|
+
"below-value",
|
|
4681
|
+
"below-progress"
|
|
4682
|
+
]
|
|
4683
|
+
},
|
|
4684
|
+
"icon": {
|
|
4685
|
+
"type": "string"
|
|
4686
|
+
},
|
|
4687
|
+
"iconExpr": {
|
|
4688
|
+
"type": "string"
|
|
4689
|
+
},
|
|
4690
|
+
"tone": {
|
|
4691
|
+
"type": "string"
|
|
4692
|
+
},
|
|
4693
|
+
"toneExpr": {
|
|
4694
|
+
"type": "string"
|
|
4695
|
+
},
|
|
4696
|
+
"layout": {
|
|
4697
|
+
"enum": [
|
|
4698
|
+
"value-only",
|
|
4699
|
+
"value+caption",
|
|
4700
|
+
"icon+value+caption",
|
|
4701
|
+
"stacked-center"
|
|
4702
|
+
]
|
|
4703
|
+
},
|
|
4704
|
+
"align": {
|
|
4705
|
+
"enum": [
|
|
4706
|
+
"start",
|
|
4707
|
+
"center",
|
|
4708
|
+
"end"
|
|
4709
|
+
]
|
|
4710
|
+
},
|
|
4711
|
+
"progress": {
|
|
4712
|
+
"type": "object",
|
|
4713
|
+
"properties": {
|
|
4714
|
+
"valueExpr": {
|
|
4715
|
+
"type": "string"
|
|
4716
|
+
},
|
|
4717
|
+
"max": {
|
|
4718
|
+
"type": "number"
|
|
4719
|
+
},
|
|
4720
|
+
"mode": {
|
|
4721
|
+
"enum": [
|
|
4722
|
+
"determinate",
|
|
4723
|
+
"indeterminate"
|
|
4724
|
+
]
|
|
4725
|
+
},
|
|
4726
|
+
"color": {
|
|
4727
|
+
"type": "string"
|
|
4728
|
+
},
|
|
4729
|
+
"colorExpr": {
|
|
4730
|
+
"type": "string"
|
|
4731
|
+
},
|
|
4732
|
+
"trackColor": {
|
|
4733
|
+
"type": "string"
|
|
4734
|
+
}
|
|
4735
|
+
}
|
|
4736
|
+
},
|
|
4737
|
+
"valueClass": {
|
|
4738
|
+
"type": "string"
|
|
4739
|
+
},
|
|
4740
|
+
"valueStyle": {
|
|
4741
|
+
"type": "string"
|
|
4742
|
+
},
|
|
4743
|
+
"showBar": {
|
|
4744
|
+
"type": "boolean"
|
|
4745
|
+
},
|
|
4746
|
+
"barValueExpr": {
|
|
4747
|
+
"type": "string"
|
|
4748
|
+
},
|
|
4749
|
+
"barColor": {
|
|
4750
|
+
"type": "string"
|
|
4751
|
+
},
|
|
4752
|
+
"barVariant": {
|
|
4753
|
+
"enum": [
|
|
4754
|
+
"determinate",
|
|
4755
|
+
"indeterminate"
|
|
4756
|
+
]
|
|
4757
|
+
},
|
|
4758
|
+
"legendExpr": {
|
|
4759
|
+
"type": "string"
|
|
4760
|
+
},
|
|
4761
|
+
"iconPosition": {
|
|
4762
|
+
"enum": [
|
|
4763
|
+
"left",
|
|
4764
|
+
"right",
|
|
4765
|
+
"top"
|
|
4766
|
+
]
|
|
4767
|
+
},
|
|
4768
|
+
"iconColorExpr": {
|
|
4769
|
+
"type": "string"
|
|
4770
|
+
}
|
|
4771
|
+
}
|
|
4772
|
+
},
|
|
4773
|
+
"compose": {
|
|
4774
|
+
"type": "object",
|
|
4775
|
+
"properties": {
|
|
4776
|
+
"items": {
|
|
4777
|
+
"type": "array",
|
|
4778
|
+
"items": {
|
|
4779
|
+
"type": "object"
|
|
4780
|
+
}
|
|
4781
|
+
},
|
|
4782
|
+
"nodes": {
|
|
4783
|
+
"type": "array",
|
|
4784
|
+
"items": {
|
|
4785
|
+
"type": "object"
|
|
4786
|
+
}
|
|
4787
|
+
},
|
|
4788
|
+
"direction": {
|
|
4789
|
+
"enum": [
|
|
4790
|
+
"row",
|
|
4791
|
+
"column"
|
|
4792
|
+
]
|
|
4793
|
+
},
|
|
4794
|
+
"orientation": {
|
|
4795
|
+
"enum": [
|
|
4796
|
+
"horizontal",
|
|
4797
|
+
"vertical"
|
|
4798
|
+
]
|
|
4799
|
+
},
|
|
4800
|
+
"align": {
|
|
4801
|
+
"enum": [
|
|
4802
|
+
"start",
|
|
4803
|
+
"center",
|
|
4804
|
+
"end"
|
|
4805
|
+
]
|
|
4806
|
+
},
|
|
4807
|
+
"gap": {
|
|
4808
|
+
"type": "string"
|
|
4809
|
+
},
|
|
4810
|
+
"wrap": {
|
|
4811
|
+
"type": "boolean"
|
|
4812
|
+
},
|
|
4813
|
+
"separator": {
|
|
4814
|
+
"type": "string"
|
|
4815
|
+
},
|
|
4816
|
+
"class": {
|
|
4817
|
+
"type": "string"
|
|
4818
|
+
},
|
|
4819
|
+
"style": {
|
|
4820
|
+
"type": "string"
|
|
4821
|
+
}
|
|
4822
|
+
}
|
|
4823
|
+
},
|
|
4824
|
+
"component": {
|
|
4825
|
+
"type": "object",
|
|
4826
|
+
"required": [
|
|
4827
|
+
"id"
|
|
4828
|
+
],
|
|
4829
|
+
"properties": {
|
|
4830
|
+
"id": {
|
|
4831
|
+
"type": "string"
|
|
4832
|
+
},
|
|
4833
|
+
"inputs": {
|
|
4834
|
+
"type": "object"
|
|
4835
|
+
},
|
|
4836
|
+
"class": {
|
|
4837
|
+
"type": "string"
|
|
4838
|
+
},
|
|
4839
|
+
"style": {
|
|
4840
|
+
"type": "string"
|
|
4841
|
+
}
|
|
4842
|
+
}
|
|
4843
|
+
}
|
|
4844
|
+
}
|
|
4845
|
+
},
|
|
4846
|
+
"badge": {
|
|
4847
|
+
"type": "object",
|
|
4848
|
+
"properties": {
|
|
4849
|
+
"expr": {
|
|
4850
|
+
"type": "string"
|
|
4851
|
+
},
|
|
4852
|
+
"color": {
|
|
4853
|
+
"type": "string"
|
|
4854
|
+
},
|
|
4855
|
+
"variant": {
|
|
4856
|
+
"enum": [
|
|
4857
|
+
"filled",
|
|
4858
|
+
"outlined"
|
|
4859
|
+
]
|
|
4860
|
+
}
|
|
4861
|
+
}
|
|
4862
|
+
}
|
|
4863
|
+
}
|
|
4864
|
+
}
|
|
4060
4865
|
}
|
|
4061
4866
|
},
|
|
4062
4867
|
"failureModes": [
|
|
@@ -4946,17 +5751,111 @@
|
|
|
4946
5751
|
},
|
|
4947
5752
|
"effects": [
|
|
4948
5753
|
{
|
|
4949
|
-
"kind": "merge-object",
|
|
4950
|
-
"path": "templating.skeleton"
|
|
5754
|
+
"kind": "merge-object",
|
|
5755
|
+
"path": "templating.skeleton"
|
|
5756
|
+
}
|
|
5757
|
+
],
|
|
5758
|
+
"validators": [
|
|
5759
|
+
"skeleton-value-supported",
|
|
5760
|
+
"editor-round-trip-preserve"
|
|
5761
|
+
],
|
|
5762
|
+
"affectedPaths": [
|
|
5763
|
+
"templating.skeleton",
|
|
5764
|
+
"templating.skeleton.count"
|
|
5765
|
+
],
|
|
5766
|
+
"submissionImpact": "visual-only",
|
|
5767
|
+
"destructive": false,
|
|
5768
|
+
"requiresConfirmation": false,
|
|
5769
|
+
"preconditions": [
|
|
5770
|
+
"config-initialized"
|
|
5771
|
+
]
|
|
5772
|
+
},
|
|
5773
|
+
{
|
|
5774
|
+
"operationId": "rules.itemStyle.upsert",
|
|
5775
|
+
"title": "Upsert item style rule",
|
|
5776
|
+
"scope": "rules",
|
|
5777
|
+
"targetKind": "rules",
|
|
5778
|
+
"target": {
|
|
5779
|
+
"kind": "rules",
|
|
5780
|
+
"resolver": "rules-config",
|
|
5781
|
+
"ambiguityPolicy": "fail",
|
|
5782
|
+
"required": false
|
|
5783
|
+
},
|
|
5784
|
+
"inputSchema": {
|
|
5785
|
+
"type": "object",
|
|
5786
|
+
"required": [
|
|
5787
|
+
"id"
|
|
5788
|
+
],
|
|
5789
|
+
"properties": {
|
|
5790
|
+
"id": {
|
|
5791
|
+
"type": "string"
|
|
5792
|
+
},
|
|
5793
|
+
"condition": {
|
|
5794
|
+
"type": "object"
|
|
5795
|
+
},
|
|
5796
|
+
"class": {
|
|
5797
|
+
"type": "string"
|
|
5798
|
+
},
|
|
5799
|
+
"style": {
|
|
5800
|
+
"type": "string"
|
|
5801
|
+
},
|
|
5802
|
+
"border": {
|
|
5803
|
+
"type": "string"
|
|
5804
|
+
},
|
|
5805
|
+
"background": {
|
|
5806
|
+
"type": "string"
|
|
5807
|
+
},
|
|
5808
|
+
"effects": {
|
|
5809
|
+
"type": "array",
|
|
5810
|
+
"items": {
|
|
5811
|
+
"type": "object",
|
|
5812
|
+
"properties": {
|
|
5813
|
+
"kind": {
|
|
5814
|
+
"enum": [
|
|
5815
|
+
"item-style"
|
|
5816
|
+
]
|
|
5817
|
+
},
|
|
5818
|
+
"class": {
|
|
5819
|
+
"type": "string"
|
|
5820
|
+
},
|
|
5821
|
+
"style": {
|
|
5822
|
+
"type": "string"
|
|
5823
|
+
},
|
|
5824
|
+
"border": {
|
|
5825
|
+
"type": "string"
|
|
5826
|
+
},
|
|
5827
|
+
"background": {
|
|
5828
|
+
"type": "string"
|
|
5829
|
+
}
|
|
5830
|
+
}
|
|
5831
|
+
}
|
|
5832
|
+
}
|
|
5833
|
+
}
|
|
5834
|
+
},
|
|
5835
|
+
"effects": [
|
|
5836
|
+
{
|
|
5837
|
+
"kind": "merge-by-key",
|
|
5838
|
+
"path": "rules.itemStyles[]",
|
|
5839
|
+
"key": "id"
|
|
4951
5840
|
}
|
|
4952
5841
|
],
|
|
4953
5842
|
"validators": [
|
|
4954
|
-
"
|
|
5843
|
+
"rule-id-stable",
|
|
5844
|
+
"json-logic-valid",
|
|
5845
|
+
"style-value-safe",
|
|
4955
5846
|
"editor-round-trip-preserve"
|
|
4956
5847
|
],
|
|
4957
5848
|
"affectedPaths": [
|
|
4958
|
-
"
|
|
4959
|
-
"
|
|
5849
|
+
"rules",
|
|
5850
|
+
"rules.itemStyles",
|
|
5851
|
+
"rules.itemStyles[].id",
|
|
5852
|
+
"rules.itemStyles[].condition",
|
|
5853
|
+
"rules.itemStyles[].class",
|
|
5854
|
+
"rules.itemStyles[].style",
|
|
5855
|
+
"rules.itemStyles[].border",
|
|
5856
|
+
"rules.itemStyles[].background",
|
|
5857
|
+
"rules.itemStyles[].effects",
|
|
5858
|
+
"rules.itemStyles[].effects[].kind"
|
|
4960
5859
|
],
|
|
4961
5860
|
"submissionImpact": "visual-only",
|
|
4962
5861
|
"destructive": false,
|
|
@@ -4966,8 +5865,8 @@
|
|
|
4966
5865
|
]
|
|
4967
5866
|
},
|
|
4968
5867
|
{
|
|
4969
|
-
"operationId": "rules.
|
|
4970
|
-
"title": "Upsert
|
|
5868
|
+
"operationId": "rules.slotOverride.upsert",
|
|
5869
|
+
"title": "Upsert slot override rule",
|
|
4971
5870
|
"scope": "rules",
|
|
4972
5871
|
"targetKind": "rules",
|
|
4973
5872
|
"target": {
|
|
@@ -4979,26 +5878,288 @@
|
|
|
4979
5878
|
"inputSchema": {
|
|
4980
5879
|
"type": "object",
|
|
4981
5880
|
"required": [
|
|
4982
|
-
"id"
|
|
5881
|
+
"id",
|
|
5882
|
+
"slot"
|
|
4983
5883
|
],
|
|
4984
5884
|
"properties": {
|
|
4985
5885
|
"id": {
|
|
4986
5886
|
"type": "string"
|
|
4987
5887
|
},
|
|
5888
|
+
"slot": {},
|
|
4988
5889
|
"condition": {
|
|
4989
5890
|
"type": "object"
|
|
4990
5891
|
},
|
|
5892
|
+
"template": {
|
|
5893
|
+
"type": "object",
|
|
5894
|
+
"required": [
|
|
5895
|
+
"type",
|
|
5896
|
+
"expr"
|
|
5897
|
+
],
|
|
5898
|
+
"properties": {
|
|
5899
|
+
"type": {
|
|
5900
|
+
"enum": [
|
|
5901
|
+
"text",
|
|
5902
|
+
"icon",
|
|
5903
|
+
"image",
|
|
5904
|
+
"chip",
|
|
5905
|
+
"rating",
|
|
5906
|
+
"currency",
|
|
5907
|
+
"date",
|
|
5908
|
+
"html",
|
|
5909
|
+
"slot",
|
|
5910
|
+
"metric",
|
|
5911
|
+
"compose",
|
|
5912
|
+
"component"
|
|
5913
|
+
]
|
|
5914
|
+
},
|
|
5915
|
+
"expr": {
|
|
5916
|
+
"type": "string"
|
|
5917
|
+
},
|
|
5918
|
+
"class": {
|
|
5919
|
+
"type": "string"
|
|
5920
|
+
},
|
|
5921
|
+
"style": {
|
|
5922
|
+
"type": "string"
|
|
5923
|
+
},
|
|
5924
|
+
"color": {
|
|
5925
|
+
"type": "string"
|
|
5926
|
+
},
|
|
5927
|
+
"variant": {
|
|
5928
|
+
"enum": [
|
|
5929
|
+
"filled",
|
|
5930
|
+
"outlined"
|
|
5931
|
+
]
|
|
5932
|
+
},
|
|
5933
|
+
"imageAlt": {
|
|
5934
|
+
"type": "string"
|
|
5935
|
+
},
|
|
5936
|
+
"props": {
|
|
5937
|
+
"type": "object",
|
|
5938
|
+
"properties": {
|
|
5939
|
+
"rating": {
|
|
5940
|
+
"type": "object",
|
|
5941
|
+
"properties": {
|
|
5942
|
+
"max": {
|
|
5943
|
+
"type": "number"
|
|
5944
|
+
},
|
|
5945
|
+
"size": {
|
|
5946
|
+
"type": "number"
|
|
5947
|
+
},
|
|
5948
|
+
"color": {
|
|
5949
|
+
"type": "string"
|
|
5950
|
+
}
|
|
5951
|
+
}
|
|
5952
|
+
},
|
|
5953
|
+
"metric": {
|
|
5954
|
+
"type": "object",
|
|
5955
|
+
"properties": {
|
|
5956
|
+
"label": {
|
|
5957
|
+
"type": "string"
|
|
5958
|
+
},
|
|
5959
|
+
"valueExpr": {
|
|
5960
|
+
"type": "string"
|
|
5961
|
+
},
|
|
5962
|
+
"caption": {
|
|
5963
|
+
"type": "string"
|
|
5964
|
+
},
|
|
5965
|
+
"subcaption": {
|
|
5966
|
+
"type": "string"
|
|
5967
|
+
},
|
|
5968
|
+
"captionPosition": {
|
|
5969
|
+
"enum": [
|
|
5970
|
+
"below-value",
|
|
5971
|
+
"below-progress"
|
|
5972
|
+
]
|
|
5973
|
+
},
|
|
5974
|
+
"icon": {
|
|
5975
|
+
"type": "string"
|
|
5976
|
+
},
|
|
5977
|
+
"iconExpr": {
|
|
5978
|
+
"type": "string"
|
|
5979
|
+
},
|
|
5980
|
+
"tone": {
|
|
5981
|
+
"type": "string"
|
|
5982
|
+
},
|
|
5983
|
+
"toneExpr": {
|
|
5984
|
+
"type": "string"
|
|
5985
|
+
},
|
|
5986
|
+
"layout": {
|
|
5987
|
+
"enum": [
|
|
5988
|
+
"value-only",
|
|
5989
|
+
"value+caption",
|
|
5990
|
+
"icon+value+caption",
|
|
5991
|
+
"stacked-center"
|
|
5992
|
+
]
|
|
5993
|
+
},
|
|
5994
|
+
"align": {
|
|
5995
|
+
"enum": [
|
|
5996
|
+
"start",
|
|
5997
|
+
"center",
|
|
5998
|
+
"end"
|
|
5999
|
+
]
|
|
6000
|
+
},
|
|
6001
|
+
"progress": {
|
|
6002
|
+
"type": "object",
|
|
6003
|
+
"properties": {
|
|
6004
|
+
"valueExpr": {
|
|
6005
|
+
"type": "string"
|
|
6006
|
+
},
|
|
6007
|
+
"max": {
|
|
6008
|
+
"type": "number"
|
|
6009
|
+
},
|
|
6010
|
+
"mode": {
|
|
6011
|
+
"enum": [
|
|
6012
|
+
"determinate",
|
|
6013
|
+
"indeterminate"
|
|
6014
|
+
]
|
|
6015
|
+
},
|
|
6016
|
+
"color": {
|
|
6017
|
+
"type": "string"
|
|
6018
|
+
},
|
|
6019
|
+
"colorExpr": {
|
|
6020
|
+
"type": "string"
|
|
6021
|
+
},
|
|
6022
|
+
"trackColor": {
|
|
6023
|
+
"type": "string"
|
|
6024
|
+
}
|
|
6025
|
+
}
|
|
6026
|
+
},
|
|
6027
|
+
"valueClass": {
|
|
6028
|
+
"type": "string"
|
|
6029
|
+
},
|
|
6030
|
+
"valueStyle": {
|
|
6031
|
+
"type": "string"
|
|
6032
|
+
},
|
|
6033
|
+
"showBar": {
|
|
6034
|
+
"type": "boolean"
|
|
6035
|
+
},
|
|
6036
|
+
"barValueExpr": {
|
|
6037
|
+
"type": "string"
|
|
6038
|
+
},
|
|
6039
|
+
"barColor": {
|
|
6040
|
+
"type": "string"
|
|
6041
|
+
},
|
|
6042
|
+
"barVariant": {
|
|
6043
|
+
"enum": [
|
|
6044
|
+
"determinate",
|
|
6045
|
+
"indeterminate"
|
|
6046
|
+
]
|
|
6047
|
+
},
|
|
6048
|
+
"legendExpr": {
|
|
6049
|
+
"type": "string"
|
|
6050
|
+
},
|
|
6051
|
+
"iconPosition": {
|
|
6052
|
+
"enum": [
|
|
6053
|
+
"left",
|
|
6054
|
+
"right",
|
|
6055
|
+
"top"
|
|
6056
|
+
]
|
|
6057
|
+
},
|
|
6058
|
+
"iconColorExpr": {
|
|
6059
|
+
"type": "string"
|
|
6060
|
+
}
|
|
6061
|
+
}
|
|
6062
|
+
},
|
|
6063
|
+
"compose": {
|
|
6064
|
+
"type": "object",
|
|
6065
|
+
"properties": {
|
|
6066
|
+
"items": {
|
|
6067
|
+
"type": "array",
|
|
6068
|
+
"items": {
|
|
6069
|
+
"type": "object"
|
|
6070
|
+
}
|
|
6071
|
+
},
|
|
6072
|
+
"nodes": {
|
|
6073
|
+
"type": "array",
|
|
6074
|
+
"items": {
|
|
6075
|
+
"type": "object"
|
|
6076
|
+
}
|
|
6077
|
+
},
|
|
6078
|
+
"direction": {
|
|
6079
|
+
"enum": [
|
|
6080
|
+
"row",
|
|
6081
|
+
"column"
|
|
6082
|
+
]
|
|
6083
|
+
},
|
|
6084
|
+
"orientation": {
|
|
6085
|
+
"enum": [
|
|
6086
|
+
"horizontal",
|
|
6087
|
+
"vertical"
|
|
6088
|
+
]
|
|
6089
|
+
},
|
|
6090
|
+
"align": {
|
|
6091
|
+
"enum": [
|
|
6092
|
+
"start",
|
|
6093
|
+
"center",
|
|
6094
|
+
"end"
|
|
6095
|
+
]
|
|
6096
|
+
},
|
|
6097
|
+
"gap": {
|
|
6098
|
+
"type": "string"
|
|
6099
|
+
},
|
|
6100
|
+
"wrap": {
|
|
6101
|
+
"type": "boolean"
|
|
6102
|
+
},
|
|
6103
|
+
"separator": {
|
|
6104
|
+
"type": "string"
|
|
6105
|
+
},
|
|
6106
|
+
"class": {
|
|
6107
|
+
"type": "string"
|
|
6108
|
+
},
|
|
6109
|
+
"style": {
|
|
6110
|
+
"type": "string"
|
|
6111
|
+
}
|
|
6112
|
+
}
|
|
6113
|
+
},
|
|
6114
|
+
"component": {
|
|
6115
|
+
"type": "object",
|
|
6116
|
+
"required": [
|
|
6117
|
+
"id"
|
|
6118
|
+
],
|
|
6119
|
+
"properties": {
|
|
6120
|
+
"id": {
|
|
6121
|
+
"type": "string"
|
|
6122
|
+
},
|
|
6123
|
+
"inputs": {
|
|
6124
|
+
"type": "object"
|
|
6125
|
+
},
|
|
6126
|
+
"class": {
|
|
6127
|
+
"type": "string"
|
|
6128
|
+
},
|
|
6129
|
+
"style": {
|
|
6130
|
+
"type": "string"
|
|
6131
|
+
}
|
|
6132
|
+
}
|
|
6133
|
+
}
|
|
6134
|
+
}
|
|
6135
|
+
},
|
|
6136
|
+
"badge": {
|
|
6137
|
+
"type": "object",
|
|
6138
|
+
"properties": {
|
|
6139
|
+
"expr": {
|
|
6140
|
+
"type": "string"
|
|
6141
|
+
},
|
|
6142
|
+
"color": {
|
|
6143
|
+
"type": "string"
|
|
6144
|
+
},
|
|
6145
|
+
"variant": {
|
|
6146
|
+
"enum": [
|
|
6147
|
+
"filled",
|
|
6148
|
+
"outlined"
|
|
6149
|
+
]
|
|
6150
|
+
}
|
|
6151
|
+
}
|
|
6152
|
+
}
|
|
6153
|
+
}
|
|
6154
|
+
},
|
|
4991
6155
|
"class": {
|
|
4992
6156
|
"type": "string"
|
|
4993
6157
|
},
|
|
4994
6158
|
"style": {
|
|
4995
6159
|
"type": "string"
|
|
4996
6160
|
},
|
|
4997
|
-
"
|
|
4998
|
-
"type": "
|
|
4999
|
-
},
|
|
5000
|
-
"background": {
|
|
5001
|
-
"type": "string"
|
|
6161
|
+
"hide": {
|
|
6162
|
+
"type": "boolean"
|
|
5002
6163
|
},
|
|
5003
6164
|
"effects": {
|
|
5004
6165
|
"type": "array",
|
|
@@ -5007,20 +6168,280 @@
|
|
|
5007
6168
|
"properties": {
|
|
5008
6169
|
"kind": {
|
|
5009
6170
|
"enum": [
|
|
5010
|
-
"
|
|
6171
|
+
"slot-override"
|
|
5011
6172
|
]
|
|
5012
6173
|
},
|
|
5013
|
-
"
|
|
5014
|
-
"type": "
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
6174
|
+
"template": {
|
|
6175
|
+
"type": "object",
|
|
6176
|
+
"required": [
|
|
6177
|
+
"type",
|
|
6178
|
+
"expr"
|
|
6179
|
+
],
|
|
6180
|
+
"properties": {
|
|
6181
|
+
"type": {
|
|
6182
|
+
"enum": [
|
|
6183
|
+
"text",
|
|
6184
|
+
"icon",
|
|
6185
|
+
"image",
|
|
6186
|
+
"chip",
|
|
6187
|
+
"rating",
|
|
6188
|
+
"currency",
|
|
6189
|
+
"date",
|
|
6190
|
+
"html",
|
|
6191
|
+
"slot",
|
|
6192
|
+
"metric",
|
|
6193
|
+
"compose",
|
|
6194
|
+
"component"
|
|
6195
|
+
]
|
|
6196
|
+
},
|
|
6197
|
+
"expr": {
|
|
6198
|
+
"type": "string"
|
|
6199
|
+
},
|
|
6200
|
+
"class": {
|
|
6201
|
+
"type": "string"
|
|
6202
|
+
},
|
|
6203
|
+
"style": {
|
|
6204
|
+
"type": "string"
|
|
6205
|
+
},
|
|
6206
|
+
"color": {
|
|
6207
|
+
"type": "string"
|
|
6208
|
+
},
|
|
6209
|
+
"variant": {
|
|
6210
|
+
"enum": [
|
|
6211
|
+
"filled",
|
|
6212
|
+
"outlined"
|
|
6213
|
+
]
|
|
6214
|
+
},
|
|
6215
|
+
"imageAlt": {
|
|
6216
|
+
"type": "string"
|
|
6217
|
+
},
|
|
6218
|
+
"props": {
|
|
6219
|
+
"type": "object",
|
|
6220
|
+
"properties": {
|
|
6221
|
+
"rating": {
|
|
6222
|
+
"type": "object",
|
|
6223
|
+
"properties": {
|
|
6224
|
+
"max": {
|
|
6225
|
+
"type": "number"
|
|
6226
|
+
},
|
|
6227
|
+
"size": {
|
|
6228
|
+
"type": "number"
|
|
6229
|
+
},
|
|
6230
|
+
"color": {
|
|
6231
|
+
"type": "string"
|
|
6232
|
+
}
|
|
6233
|
+
}
|
|
6234
|
+
},
|
|
6235
|
+
"metric": {
|
|
6236
|
+
"type": "object",
|
|
6237
|
+
"properties": {
|
|
6238
|
+
"label": {
|
|
6239
|
+
"type": "string"
|
|
6240
|
+
},
|
|
6241
|
+
"valueExpr": {
|
|
6242
|
+
"type": "string"
|
|
6243
|
+
},
|
|
6244
|
+
"caption": {
|
|
6245
|
+
"type": "string"
|
|
6246
|
+
},
|
|
6247
|
+
"subcaption": {
|
|
6248
|
+
"type": "string"
|
|
6249
|
+
},
|
|
6250
|
+
"captionPosition": {
|
|
6251
|
+
"enum": [
|
|
6252
|
+
"below-value",
|
|
6253
|
+
"below-progress"
|
|
6254
|
+
]
|
|
6255
|
+
},
|
|
6256
|
+
"icon": {
|
|
6257
|
+
"type": "string"
|
|
6258
|
+
},
|
|
6259
|
+
"iconExpr": {
|
|
6260
|
+
"type": "string"
|
|
6261
|
+
},
|
|
6262
|
+
"tone": {
|
|
6263
|
+
"type": "string"
|
|
6264
|
+
},
|
|
6265
|
+
"toneExpr": {
|
|
6266
|
+
"type": "string"
|
|
6267
|
+
},
|
|
6268
|
+
"layout": {
|
|
6269
|
+
"enum": [
|
|
6270
|
+
"value-only",
|
|
6271
|
+
"value+caption",
|
|
6272
|
+
"icon+value+caption",
|
|
6273
|
+
"stacked-center"
|
|
6274
|
+
]
|
|
6275
|
+
},
|
|
6276
|
+
"align": {
|
|
6277
|
+
"enum": [
|
|
6278
|
+
"start",
|
|
6279
|
+
"center",
|
|
6280
|
+
"end"
|
|
6281
|
+
]
|
|
6282
|
+
},
|
|
6283
|
+
"progress": {
|
|
6284
|
+
"type": "object",
|
|
6285
|
+
"properties": {
|
|
6286
|
+
"valueExpr": {
|
|
6287
|
+
"type": "string"
|
|
6288
|
+
},
|
|
6289
|
+
"max": {
|
|
6290
|
+
"type": "number"
|
|
6291
|
+
},
|
|
6292
|
+
"mode": {
|
|
6293
|
+
"enum": [
|
|
6294
|
+
"determinate",
|
|
6295
|
+
"indeterminate"
|
|
6296
|
+
]
|
|
6297
|
+
},
|
|
6298
|
+
"color": {
|
|
6299
|
+
"type": "string"
|
|
6300
|
+
},
|
|
6301
|
+
"colorExpr": {
|
|
6302
|
+
"type": "string"
|
|
6303
|
+
},
|
|
6304
|
+
"trackColor": {
|
|
6305
|
+
"type": "string"
|
|
6306
|
+
}
|
|
6307
|
+
}
|
|
6308
|
+
},
|
|
6309
|
+
"valueClass": {
|
|
6310
|
+
"type": "string"
|
|
6311
|
+
},
|
|
6312
|
+
"valueStyle": {
|
|
6313
|
+
"type": "string"
|
|
6314
|
+
},
|
|
6315
|
+
"showBar": {
|
|
6316
|
+
"type": "boolean"
|
|
6317
|
+
},
|
|
6318
|
+
"barValueExpr": {
|
|
6319
|
+
"type": "string"
|
|
6320
|
+
},
|
|
6321
|
+
"barColor": {
|
|
6322
|
+
"type": "string"
|
|
6323
|
+
},
|
|
6324
|
+
"barVariant": {
|
|
6325
|
+
"enum": [
|
|
6326
|
+
"determinate",
|
|
6327
|
+
"indeterminate"
|
|
6328
|
+
]
|
|
6329
|
+
},
|
|
6330
|
+
"legendExpr": {
|
|
6331
|
+
"type": "string"
|
|
6332
|
+
},
|
|
6333
|
+
"iconPosition": {
|
|
6334
|
+
"enum": [
|
|
6335
|
+
"left",
|
|
6336
|
+
"right",
|
|
6337
|
+
"top"
|
|
6338
|
+
]
|
|
6339
|
+
},
|
|
6340
|
+
"iconColorExpr": {
|
|
6341
|
+
"type": "string"
|
|
6342
|
+
}
|
|
6343
|
+
}
|
|
6344
|
+
},
|
|
6345
|
+
"compose": {
|
|
6346
|
+
"type": "object",
|
|
6347
|
+
"properties": {
|
|
6348
|
+
"items": {
|
|
6349
|
+
"type": "array",
|
|
6350
|
+
"items": {
|
|
6351
|
+
"type": "object"
|
|
6352
|
+
}
|
|
6353
|
+
},
|
|
6354
|
+
"nodes": {
|
|
6355
|
+
"type": "array",
|
|
6356
|
+
"items": {
|
|
6357
|
+
"type": "object"
|
|
6358
|
+
}
|
|
6359
|
+
},
|
|
6360
|
+
"direction": {
|
|
6361
|
+
"enum": [
|
|
6362
|
+
"row",
|
|
6363
|
+
"column"
|
|
6364
|
+
]
|
|
6365
|
+
},
|
|
6366
|
+
"orientation": {
|
|
6367
|
+
"enum": [
|
|
6368
|
+
"horizontal",
|
|
6369
|
+
"vertical"
|
|
6370
|
+
]
|
|
6371
|
+
},
|
|
6372
|
+
"align": {
|
|
6373
|
+
"enum": [
|
|
6374
|
+
"start",
|
|
6375
|
+
"center",
|
|
6376
|
+
"end"
|
|
6377
|
+
]
|
|
6378
|
+
},
|
|
6379
|
+
"gap": {
|
|
6380
|
+
"type": "string"
|
|
6381
|
+
},
|
|
6382
|
+
"wrap": {
|
|
6383
|
+
"type": "boolean"
|
|
6384
|
+
},
|
|
6385
|
+
"separator": {
|
|
6386
|
+
"type": "string"
|
|
6387
|
+
},
|
|
6388
|
+
"class": {
|
|
6389
|
+
"type": "string"
|
|
6390
|
+
},
|
|
6391
|
+
"style": {
|
|
6392
|
+
"type": "string"
|
|
6393
|
+
}
|
|
6394
|
+
}
|
|
6395
|
+
},
|
|
6396
|
+
"component": {
|
|
6397
|
+
"type": "object",
|
|
6398
|
+
"required": [
|
|
6399
|
+
"id"
|
|
6400
|
+
],
|
|
6401
|
+
"properties": {
|
|
6402
|
+
"id": {
|
|
6403
|
+
"type": "string"
|
|
6404
|
+
},
|
|
6405
|
+
"inputs": {
|
|
6406
|
+
"type": "object"
|
|
6407
|
+
},
|
|
6408
|
+
"class": {
|
|
6409
|
+
"type": "string"
|
|
6410
|
+
},
|
|
6411
|
+
"style": {
|
|
6412
|
+
"type": "string"
|
|
6413
|
+
}
|
|
6414
|
+
}
|
|
6415
|
+
}
|
|
6416
|
+
}
|
|
6417
|
+
},
|
|
6418
|
+
"badge": {
|
|
6419
|
+
"type": "object",
|
|
6420
|
+
"properties": {
|
|
6421
|
+
"expr": {
|
|
6422
|
+
"type": "string"
|
|
6423
|
+
},
|
|
6424
|
+
"color": {
|
|
6425
|
+
"type": "string"
|
|
6426
|
+
},
|
|
6427
|
+
"variant": {
|
|
6428
|
+
"enum": [
|
|
6429
|
+
"filled",
|
|
6430
|
+
"outlined"
|
|
6431
|
+
]
|
|
6432
|
+
}
|
|
6433
|
+
}
|
|
6434
|
+
}
|
|
6435
|
+
}
|
|
5018
6436
|
},
|
|
5019
|
-
"
|
|
6437
|
+
"class": {
|
|
5020
6438
|
"type": "string"
|
|
5021
6439
|
},
|
|
5022
|
-
"
|
|
6440
|
+
"style": {
|
|
5023
6441
|
"type": "string"
|
|
6442
|
+
},
|
|
6443
|
+
"hide": {
|
|
6444
|
+
"type": "boolean"
|
|
5024
6445
|
}
|
|
5025
6446
|
}
|
|
5026
6447
|
}
|
|
@@ -5030,27 +6451,30 @@
|
|
|
5030
6451
|
"effects": [
|
|
5031
6452
|
{
|
|
5032
6453
|
"kind": "merge-by-key",
|
|
5033
|
-
"path": "rules.
|
|
6454
|
+
"path": "rules.slotOverrides[]",
|
|
5034
6455
|
"key": "id"
|
|
5035
6456
|
}
|
|
5036
6457
|
],
|
|
5037
6458
|
"validators": [
|
|
5038
6459
|
"rule-id-stable",
|
|
6460
|
+
"template-slot-supported",
|
|
5039
6461
|
"json-logic-valid",
|
|
6462
|
+
"template-expression-safe",
|
|
5040
6463
|
"style-value-safe",
|
|
5041
6464
|
"editor-round-trip-preserve"
|
|
5042
6465
|
],
|
|
5043
6466
|
"affectedPaths": [
|
|
5044
6467
|
"rules",
|
|
5045
|
-
"rules.
|
|
5046
|
-
"rules.
|
|
5047
|
-
"rules.
|
|
5048
|
-
"rules.
|
|
5049
|
-
"rules.
|
|
5050
|
-
"rules.
|
|
5051
|
-
"rules.
|
|
5052
|
-
"rules.
|
|
5053
|
-
"rules.
|
|
6468
|
+
"rules.slotOverrides",
|
|
6469
|
+
"rules.slotOverrides[].id",
|
|
6470
|
+
"rules.slotOverrides[].slot",
|
|
6471
|
+
"rules.slotOverrides[].condition",
|
|
6472
|
+
"rules.slotOverrides[].template",
|
|
6473
|
+
"rules.slotOverrides[].class",
|
|
6474
|
+
"rules.slotOverrides[].style",
|
|
6475
|
+
"rules.slotOverrides[].hide",
|
|
6476
|
+
"rules.slotOverrides[].effects",
|
|
6477
|
+
"rules.slotOverrides[].effects[].kind"
|
|
5054
6478
|
],
|
|
5055
6479
|
"submissionImpact": "visual-only",
|
|
5056
6480
|
"destructive": false,
|
|
@@ -5060,29 +6484,41 @@
|
|
|
5060
6484
|
]
|
|
5061
6485
|
},
|
|
5062
6486
|
{
|
|
5063
|
-
"operationId": "
|
|
5064
|
-
"title": "
|
|
5065
|
-
"scope": "
|
|
5066
|
-
"targetKind": "
|
|
6487
|
+
"operationId": "emptyState.set",
|
|
6488
|
+
"title": "Set empty state",
|
|
6489
|
+
"scope": "itemTemplate",
|
|
6490
|
+
"targetKind": "emptyState",
|
|
5067
6491
|
"target": {
|
|
5068
|
-
"kind": "
|
|
5069
|
-
"resolver": "
|
|
6492
|
+
"kind": "emptyState",
|
|
6493
|
+
"resolver": "templating-empty-state",
|
|
5070
6494
|
"ambiguityPolicy": "fail",
|
|
5071
6495
|
"required": false
|
|
5072
6496
|
},
|
|
5073
6497
|
"inputSchema": {
|
|
5074
6498
|
"type": "object",
|
|
5075
6499
|
"required": [
|
|
5076
|
-
"
|
|
5077
|
-
"
|
|
6500
|
+
"type",
|
|
6501
|
+
"expr"
|
|
5078
6502
|
],
|
|
5079
6503
|
"properties": {
|
|
5080
|
-
"
|
|
5081
|
-
"
|
|
6504
|
+
"type": {
|
|
6505
|
+
"enum": [
|
|
6506
|
+
"text",
|
|
6507
|
+
"icon",
|
|
6508
|
+
"image",
|
|
6509
|
+
"chip",
|
|
6510
|
+
"rating",
|
|
6511
|
+
"currency",
|
|
6512
|
+
"date",
|
|
6513
|
+
"html",
|
|
6514
|
+
"slot",
|
|
6515
|
+
"metric",
|
|
6516
|
+
"compose",
|
|
6517
|
+
"component"
|
|
6518
|
+
]
|
|
5082
6519
|
},
|
|
5083
|
-
"
|
|
5084
|
-
|
|
5085
|
-
"type": "object"
|
|
6520
|
+
"expr": {
|
|
6521
|
+
"type": "string"
|
|
5086
6522
|
},
|
|
5087
6523
|
"class": {
|
|
5088
6524
|
"type": "string"
|
|
@@ -5090,79 +6526,237 @@
|
|
|
5090
6526
|
"style": {
|
|
5091
6527
|
"type": "string"
|
|
5092
6528
|
},
|
|
5093
|
-
"
|
|
5094
|
-
"type": "
|
|
6529
|
+
"color": {
|
|
6530
|
+
"type": "string"
|
|
5095
6531
|
},
|
|
5096
|
-
"
|
|
5097
|
-
"
|
|
5098
|
-
|
|
5099
|
-
"
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
"
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
6532
|
+
"variant": {
|
|
6533
|
+
"enum": [
|
|
6534
|
+
"filled",
|
|
6535
|
+
"outlined"
|
|
6536
|
+
]
|
|
6537
|
+
},
|
|
6538
|
+
"imageAlt": {
|
|
6539
|
+
"type": "string"
|
|
6540
|
+
},
|
|
6541
|
+
"props": {
|
|
6542
|
+
"type": "object",
|
|
6543
|
+
"properties": {
|
|
6544
|
+
"rating": {
|
|
6545
|
+
"type": "object",
|
|
6546
|
+
"properties": {
|
|
6547
|
+
"max": {
|
|
6548
|
+
"type": "number"
|
|
6549
|
+
},
|
|
6550
|
+
"size": {
|
|
6551
|
+
"type": "number"
|
|
6552
|
+
},
|
|
6553
|
+
"color": {
|
|
6554
|
+
"type": "string"
|
|
6555
|
+
}
|
|
6556
|
+
}
|
|
6557
|
+
},
|
|
6558
|
+
"metric": {
|
|
6559
|
+
"type": "object",
|
|
6560
|
+
"properties": {
|
|
6561
|
+
"label": {
|
|
6562
|
+
"type": "string"
|
|
6563
|
+
},
|
|
6564
|
+
"valueExpr": {
|
|
6565
|
+
"type": "string"
|
|
6566
|
+
},
|
|
6567
|
+
"caption": {
|
|
6568
|
+
"type": "string"
|
|
6569
|
+
},
|
|
6570
|
+
"subcaption": {
|
|
6571
|
+
"type": "string"
|
|
6572
|
+
},
|
|
6573
|
+
"captionPosition": {
|
|
6574
|
+
"enum": [
|
|
6575
|
+
"below-value",
|
|
6576
|
+
"below-progress"
|
|
6577
|
+
]
|
|
6578
|
+
},
|
|
6579
|
+
"icon": {
|
|
6580
|
+
"type": "string"
|
|
6581
|
+
},
|
|
6582
|
+
"iconExpr": {
|
|
6583
|
+
"type": "string"
|
|
6584
|
+
},
|
|
6585
|
+
"tone": {
|
|
6586
|
+
"type": "string"
|
|
6587
|
+
},
|
|
6588
|
+
"toneExpr": {
|
|
6589
|
+
"type": "string"
|
|
6590
|
+
},
|
|
6591
|
+
"layout": {
|
|
6592
|
+
"enum": [
|
|
6593
|
+
"value-only",
|
|
6594
|
+
"value+caption",
|
|
6595
|
+
"icon+value+caption",
|
|
6596
|
+
"stacked-center"
|
|
6597
|
+
]
|
|
6598
|
+
},
|
|
6599
|
+
"align": {
|
|
6600
|
+
"enum": [
|
|
6601
|
+
"start",
|
|
6602
|
+
"center",
|
|
6603
|
+
"end"
|
|
6604
|
+
]
|
|
6605
|
+
},
|
|
6606
|
+
"progress": {
|
|
6607
|
+
"type": "object",
|
|
6608
|
+
"properties": {
|
|
6609
|
+
"valueExpr": {
|
|
6610
|
+
"type": "string"
|
|
6611
|
+
},
|
|
6612
|
+
"max": {
|
|
6613
|
+
"type": "number"
|
|
6614
|
+
},
|
|
6615
|
+
"mode": {
|
|
6616
|
+
"enum": [
|
|
6617
|
+
"determinate",
|
|
6618
|
+
"indeterminate"
|
|
6619
|
+
]
|
|
6620
|
+
},
|
|
6621
|
+
"color": {
|
|
6622
|
+
"type": "string"
|
|
6623
|
+
},
|
|
6624
|
+
"colorExpr": {
|
|
6625
|
+
"type": "string"
|
|
6626
|
+
},
|
|
6627
|
+
"trackColor": {
|
|
6628
|
+
"type": "string"
|
|
6629
|
+
}
|
|
6630
|
+
}
|
|
6631
|
+
},
|
|
6632
|
+
"valueClass": {
|
|
6633
|
+
"type": "string"
|
|
6634
|
+
},
|
|
6635
|
+
"valueStyle": {
|
|
6636
|
+
"type": "string"
|
|
6637
|
+
},
|
|
6638
|
+
"showBar": {
|
|
6639
|
+
"type": "boolean"
|
|
6640
|
+
},
|
|
6641
|
+
"barValueExpr": {
|
|
6642
|
+
"type": "string"
|
|
6643
|
+
},
|
|
6644
|
+
"barColor": {
|
|
6645
|
+
"type": "string"
|
|
6646
|
+
},
|
|
6647
|
+
"barVariant": {
|
|
6648
|
+
"enum": [
|
|
6649
|
+
"determinate",
|
|
6650
|
+
"indeterminate"
|
|
6651
|
+
]
|
|
6652
|
+
},
|
|
6653
|
+
"legendExpr": {
|
|
6654
|
+
"type": "string"
|
|
6655
|
+
},
|
|
6656
|
+
"iconPosition": {
|
|
6657
|
+
"enum": [
|
|
6658
|
+
"left",
|
|
6659
|
+
"right",
|
|
6660
|
+
"top"
|
|
6661
|
+
]
|
|
6662
|
+
},
|
|
6663
|
+
"iconColorExpr": {
|
|
6664
|
+
"type": "string"
|
|
6665
|
+
}
|
|
6666
|
+
}
|
|
6667
|
+
},
|
|
6668
|
+
"compose": {
|
|
6669
|
+
"type": "object",
|
|
6670
|
+
"properties": {
|
|
6671
|
+
"items": {
|
|
6672
|
+
"type": "array",
|
|
6673
|
+
"items": {
|
|
6674
|
+
"type": "object"
|
|
6675
|
+
}
|
|
6676
|
+
},
|
|
6677
|
+
"nodes": {
|
|
6678
|
+
"type": "array",
|
|
6679
|
+
"items": {
|
|
6680
|
+
"type": "object"
|
|
6681
|
+
}
|
|
6682
|
+
},
|
|
6683
|
+
"direction": {
|
|
6684
|
+
"enum": [
|
|
6685
|
+
"row",
|
|
6686
|
+
"column"
|
|
6687
|
+
]
|
|
6688
|
+
},
|
|
6689
|
+
"orientation": {
|
|
6690
|
+
"enum": [
|
|
6691
|
+
"horizontal",
|
|
6692
|
+
"vertical"
|
|
6693
|
+
]
|
|
6694
|
+
},
|
|
6695
|
+
"align": {
|
|
6696
|
+
"enum": [
|
|
6697
|
+
"start",
|
|
6698
|
+
"center",
|
|
6699
|
+
"end"
|
|
6700
|
+
]
|
|
6701
|
+
},
|
|
6702
|
+
"gap": {
|
|
6703
|
+
"type": "string"
|
|
6704
|
+
},
|
|
6705
|
+
"wrap": {
|
|
6706
|
+
"type": "boolean"
|
|
6707
|
+
},
|
|
6708
|
+
"separator": {
|
|
6709
|
+
"type": "string"
|
|
6710
|
+
},
|
|
6711
|
+
"class": {
|
|
6712
|
+
"type": "string"
|
|
6713
|
+
},
|
|
6714
|
+
"style": {
|
|
6715
|
+
"type": "string"
|
|
6716
|
+
}
|
|
6717
|
+
}
|
|
6718
|
+
},
|
|
6719
|
+
"component": {
|
|
6720
|
+
"type": "object",
|
|
6721
|
+
"required": [
|
|
6722
|
+
"id"
|
|
6723
|
+
],
|
|
6724
|
+
"properties": {
|
|
6725
|
+
"id": {
|
|
6726
|
+
"type": "string"
|
|
6727
|
+
},
|
|
6728
|
+
"inputs": {
|
|
6729
|
+
"type": "object"
|
|
6730
|
+
},
|
|
6731
|
+
"class": {
|
|
6732
|
+
"type": "string"
|
|
6733
|
+
},
|
|
6734
|
+
"style": {
|
|
6735
|
+
"type": "string"
|
|
6736
|
+
}
|
|
5114
6737
|
}
|
|
5115
6738
|
}
|
|
5116
6739
|
}
|
|
6740
|
+
},
|
|
6741
|
+
"badge": {
|
|
6742
|
+
"type": "object",
|
|
6743
|
+
"properties": {
|
|
6744
|
+
"expr": {
|
|
6745
|
+
"type": "string"
|
|
6746
|
+
},
|
|
6747
|
+
"color": {
|
|
6748
|
+
"type": "string"
|
|
6749
|
+
},
|
|
6750
|
+
"variant": {
|
|
6751
|
+
"enum": [
|
|
6752
|
+
"filled",
|
|
6753
|
+
"outlined"
|
|
6754
|
+
]
|
|
6755
|
+
}
|
|
6756
|
+
}
|
|
5117
6757
|
}
|
|
5118
6758
|
}
|
|
5119
6759
|
},
|
|
5120
|
-
"effects": [
|
|
5121
|
-
{
|
|
5122
|
-
"kind": "merge-by-key",
|
|
5123
|
-
"path": "rules.slotOverrides[]",
|
|
5124
|
-
"key": "id"
|
|
5125
|
-
}
|
|
5126
|
-
],
|
|
5127
|
-
"validators": [
|
|
5128
|
-
"rule-id-stable",
|
|
5129
|
-
"template-slot-supported",
|
|
5130
|
-
"json-logic-valid",
|
|
5131
|
-
"template-expression-safe",
|
|
5132
|
-
"style-value-safe",
|
|
5133
|
-
"editor-round-trip-preserve"
|
|
5134
|
-
],
|
|
5135
|
-
"affectedPaths": [
|
|
5136
|
-
"rules",
|
|
5137
|
-
"rules.slotOverrides",
|
|
5138
|
-
"rules.slotOverrides[].id",
|
|
5139
|
-
"rules.slotOverrides[].slot",
|
|
5140
|
-
"rules.slotOverrides[].condition",
|
|
5141
|
-
"rules.slotOverrides[].template",
|
|
5142
|
-
"rules.slotOverrides[].class",
|
|
5143
|
-
"rules.slotOverrides[].style",
|
|
5144
|
-
"rules.slotOverrides[].hide",
|
|
5145
|
-
"rules.slotOverrides[].effects",
|
|
5146
|
-
"rules.slotOverrides[].effects[].kind"
|
|
5147
|
-
],
|
|
5148
|
-
"submissionImpact": "visual-only",
|
|
5149
|
-
"destructive": false,
|
|
5150
|
-
"requiresConfirmation": false,
|
|
5151
|
-
"preconditions": [
|
|
5152
|
-
"config-initialized"
|
|
5153
|
-
]
|
|
5154
|
-
},
|
|
5155
|
-
{
|
|
5156
|
-
"operationId": "emptyState.set",
|
|
5157
|
-
"title": "Set empty state",
|
|
5158
|
-
"scope": "itemTemplate",
|
|
5159
|
-
"targetKind": "emptyState",
|
|
5160
|
-
"target": {
|
|
5161
|
-
"kind": "emptyState",
|
|
5162
|
-
"resolver": "templating-empty-state",
|
|
5163
|
-
"ambiguityPolicy": "fail",
|
|
5164
|
-
"required": false
|
|
5165
|
-
},
|
|
5166
6760
|
"effects": [
|
|
5167
6761
|
{
|
|
5168
6762
|
"kind": "merge-object",
|
|
@@ -5428,6 +7022,532 @@
|
|
|
5428
7022
|
},
|
|
5429
7023
|
"style": {
|
|
5430
7024
|
"type": "string"
|
|
7025
|
+
},
|
|
7026
|
+
"loadingTemplate": {
|
|
7027
|
+
"type": "object",
|
|
7028
|
+
"required": [
|
|
7029
|
+
"type",
|
|
7030
|
+
"expr"
|
|
7031
|
+
],
|
|
7032
|
+
"properties": {
|
|
7033
|
+
"type": {
|
|
7034
|
+
"enum": [
|
|
7035
|
+
"text",
|
|
7036
|
+
"icon",
|
|
7037
|
+
"image",
|
|
7038
|
+
"chip",
|
|
7039
|
+
"rating",
|
|
7040
|
+
"currency",
|
|
7041
|
+
"date",
|
|
7042
|
+
"html",
|
|
7043
|
+
"slot",
|
|
7044
|
+
"metric",
|
|
7045
|
+
"compose",
|
|
7046
|
+
"component"
|
|
7047
|
+
]
|
|
7048
|
+
},
|
|
7049
|
+
"expr": {
|
|
7050
|
+
"type": "string"
|
|
7051
|
+
},
|
|
7052
|
+
"class": {
|
|
7053
|
+
"type": "string"
|
|
7054
|
+
},
|
|
7055
|
+
"style": {
|
|
7056
|
+
"type": "string"
|
|
7057
|
+
},
|
|
7058
|
+
"color": {
|
|
7059
|
+
"type": "string"
|
|
7060
|
+
},
|
|
7061
|
+
"variant": {
|
|
7062
|
+
"enum": [
|
|
7063
|
+
"filled",
|
|
7064
|
+
"outlined"
|
|
7065
|
+
]
|
|
7066
|
+
},
|
|
7067
|
+
"imageAlt": {
|
|
7068
|
+
"type": "string"
|
|
7069
|
+
},
|
|
7070
|
+
"props": {
|
|
7071
|
+
"type": "object",
|
|
7072
|
+
"properties": {
|
|
7073
|
+
"rating": {
|
|
7074
|
+
"type": "object",
|
|
7075
|
+
"properties": {
|
|
7076
|
+
"max": {
|
|
7077
|
+
"type": "number"
|
|
7078
|
+
},
|
|
7079
|
+
"size": {
|
|
7080
|
+
"type": "number"
|
|
7081
|
+
},
|
|
7082
|
+
"color": {
|
|
7083
|
+
"type": "string"
|
|
7084
|
+
}
|
|
7085
|
+
}
|
|
7086
|
+
},
|
|
7087
|
+
"metric": {
|
|
7088
|
+
"type": "object",
|
|
7089
|
+
"properties": {
|
|
7090
|
+
"label": {
|
|
7091
|
+
"type": "string"
|
|
7092
|
+
},
|
|
7093
|
+
"valueExpr": {
|
|
7094
|
+
"type": "string"
|
|
7095
|
+
},
|
|
7096
|
+
"caption": {
|
|
7097
|
+
"type": "string"
|
|
7098
|
+
},
|
|
7099
|
+
"subcaption": {
|
|
7100
|
+
"type": "string"
|
|
7101
|
+
},
|
|
7102
|
+
"captionPosition": {
|
|
7103
|
+
"enum": [
|
|
7104
|
+
"below-value",
|
|
7105
|
+
"below-progress"
|
|
7106
|
+
]
|
|
7107
|
+
},
|
|
7108
|
+
"icon": {
|
|
7109
|
+
"type": "string"
|
|
7110
|
+
},
|
|
7111
|
+
"iconExpr": {
|
|
7112
|
+
"type": "string"
|
|
7113
|
+
},
|
|
7114
|
+
"tone": {
|
|
7115
|
+
"type": "string"
|
|
7116
|
+
},
|
|
7117
|
+
"toneExpr": {
|
|
7118
|
+
"type": "string"
|
|
7119
|
+
},
|
|
7120
|
+
"layout": {
|
|
7121
|
+
"enum": [
|
|
7122
|
+
"value-only",
|
|
7123
|
+
"value+caption",
|
|
7124
|
+
"icon+value+caption",
|
|
7125
|
+
"stacked-center"
|
|
7126
|
+
]
|
|
7127
|
+
},
|
|
7128
|
+
"align": {
|
|
7129
|
+
"enum": [
|
|
7130
|
+
"start",
|
|
7131
|
+
"center",
|
|
7132
|
+
"end"
|
|
7133
|
+
]
|
|
7134
|
+
},
|
|
7135
|
+
"progress": {
|
|
7136
|
+
"type": "object",
|
|
7137
|
+
"properties": {
|
|
7138
|
+
"valueExpr": {
|
|
7139
|
+
"type": "string"
|
|
7140
|
+
},
|
|
7141
|
+
"max": {
|
|
7142
|
+
"type": "number"
|
|
7143
|
+
},
|
|
7144
|
+
"mode": {
|
|
7145
|
+
"enum": [
|
|
7146
|
+
"determinate",
|
|
7147
|
+
"indeterminate"
|
|
7148
|
+
]
|
|
7149
|
+
},
|
|
7150
|
+
"color": {
|
|
7151
|
+
"type": "string"
|
|
7152
|
+
},
|
|
7153
|
+
"colorExpr": {
|
|
7154
|
+
"type": "string"
|
|
7155
|
+
},
|
|
7156
|
+
"trackColor": {
|
|
7157
|
+
"type": "string"
|
|
7158
|
+
}
|
|
7159
|
+
}
|
|
7160
|
+
},
|
|
7161
|
+
"valueClass": {
|
|
7162
|
+
"type": "string"
|
|
7163
|
+
},
|
|
7164
|
+
"valueStyle": {
|
|
7165
|
+
"type": "string"
|
|
7166
|
+
},
|
|
7167
|
+
"showBar": {
|
|
7168
|
+
"type": "boolean"
|
|
7169
|
+
},
|
|
7170
|
+
"barValueExpr": {
|
|
7171
|
+
"type": "string"
|
|
7172
|
+
},
|
|
7173
|
+
"barColor": {
|
|
7174
|
+
"type": "string"
|
|
7175
|
+
},
|
|
7176
|
+
"barVariant": {
|
|
7177
|
+
"enum": [
|
|
7178
|
+
"determinate",
|
|
7179
|
+
"indeterminate"
|
|
7180
|
+
]
|
|
7181
|
+
},
|
|
7182
|
+
"legendExpr": {
|
|
7183
|
+
"type": "string"
|
|
7184
|
+
},
|
|
7185
|
+
"iconPosition": {
|
|
7186
|
+
"enum": [
|
|
7187
|
+
"left",
|
|
7188
|
+
"right",
|
|
7189
|
+
"top"
|
|
7190
|
+
]
|
|
7191
|
+
},
|
|
7192
|
+
"iconColorExpr": {
|
|
7193
|
+
"type": "string"
|
|
7194
|
+
}
|
|
7195
|
+
}
|
|
7196
|
+
},
|
|
7197
|
+
"compose": {
|
|
7198
|
+
"type": "object",
|
|
7199
|
+
"properties": {
|
|
7200
|
+
"items": {
|
|
7201
|
+
"type": "array",
|
|
7202
|
+
"items": {
|
|
7203
|
+
"type": "object"
|
|
7204
|
+
}
|
|
7205
|
+
},
|
|
7206
|
+
"nodes": {
|
|
7207
|
+
"type": "array",
|
|
7208
|
+
"items": {
|
|
7209
|
+
"type": "object"
|
|
7210
|
+
}
|
|
7211
|
+
},
|
|
7212
|
+
"direction": {
|
|
7213
|
+
"enum": [
|
|
7214
|
+
"row",
|
|
7215
|
+
"column"
|
|
7216
|
+
]
|
|
7217
|
+
},
|
|
7218
|
+
"orientation": {
|
|
7219
|
+
"enum": [
|
|
7220
|
+
"horizontal",
|
|
7221
|
+
"vertical"
|
|
7222
|
+
]
|
|
7223
|
+
},
|
|
7224
|
+
"align": {
|
|
7225
|
+
"enum": [
|
|
7226
|
+
"start",
|
|
7227
|
+
"center",
|
|
7228
|
+
"end"
|
|
7229
|
+
]
|
|
7230
|
+
},
|
|
7231
|
+
"gap": {
|
|
7232
|
+
"type": "string"
|
|
7233
|
+
},
|
|
7234
|
+
"wrap": {
|
|
7235
|
+
"type": "boolean"
|
|
7236
|
+
},
|
|
7237
|
+
"separator": {
|
|
7238
|
+
"type": "string"
|
|
7239
|
+
},
|
|
7240
|
+
"class": {
|
|
7241
|
+
"type": "string"
|
|
7242
|
+
},
|
|
7243
|
+
"style": {
|
|
7244
|
+
"type": "string"
|
|
7245
|
+
}
|
|
7246
|
+
}
|
|
7247
|
+
},
|
|
7248
|
+
"component": {
|
|
7249
|
+
"type": "object",
|
|
7250
|
+
"required": [
|
|
7251
|
+
"id"
|
|
7252
|
+
],
|
|
7253
|
+
"properties": {
|
|
7254
|
+
"id": {
|
|
7255
|
+
"type": "string"
|
|
7256
|
+
},
|
|
7257
|
+
"inputs": {
|
|
7258
|
+
"type": "object"
|
|
7259
|
+
},
|
|
7260
|
+
"class": {
|
|
7261
|
+
"type": "string"
|
|
7262
|
+
},
|
|
7263
|
+
"style": {
|
|
7264
|
+
"type": "string"
|
|
7265
|
+
}
|
|
7266
|
+
}
|
|
7267
|
+
}
|
|
7268
|
+
}
|
|
7269
|
+
},
|
|
7270
|
+
"badge": {
|
|
7271
|
+
"type": "object",
|
|
7272
|
+
"properties": {
|
|
7273
|
+
"expr": {
|
|
7274
|
+
"type": "string"
|
|
7275
|
+
},
|
|
7276
|
+
"color": {
|
|
7277
|
+
"type": "string"
|
|
7278
|
+
},
|
|
7279
|
+
"variant": {
|
|
7280
|
+
"enum": [
|
|
7281
|
+
"filled",
|
|
7282
|
+
"outlined"
|
|
7283
|
+
]
|
|
7284
|
+
}
|
|
7285
|
+
}
|
|
7286
|
+
}
|
|
7287
|
+
}
|
|
7288
|
+
},
|
|
7289
|
+
"errorTemplate": {
|
|
7290
|
+
"type": "object",
|
|
7291
|
+
"required": [
|
|
7292
|
+
"type",
|
|
7293
|
+
"expr"
|
|
7294
|
+
],
|
|
7295
|
+
"properties": {
|
|
7296
|
+
"type": {
|
|
7297
|
+
"enum": [
|
|
7298
|
+
"text",
|
|
7299
|
+
"icon",
|
|
7300
|
+
"image",
|
|
7301
|
+
"chip",
|
|
7302
|
+
"rating",
|
|
7303
|
+
"currency",
|
|
7304
|
+
"date",
|
|
7305
|
+
"html",
|
|
7306
|
+
"slot",
|
|
7307
|
+
"metric",
|
|
7308
|
+
"compose",
|
|
7309
|
+
"component"
|
|
7310
|
+
]
|
|
7311
|
+
},
|
|
7312
|
+
"expr": {
|
|
7313
|
+
"type": "string"
|
|
7314
|
+
},
|
|
7315
|
+
"class": {
|
|
7316
|
+
"type": "string"
|
|
7317
|
+
},
|
|
7318
|
+
"style": {
|
|
7319
|
+
"type": "string"
|
|
7320
|
+
},
|
|
7321
|
+
"color": {
|
|
7322
|
+
"type": "string"
|
|
7323
|
+
},
|
|
7324
|
+
"variant": {
|
|
7325
|
+
"enum": [
|
|
7326
|
+
"filled",
|
|
7327
|
+
"outlined"
|
|
7328
|
+
]
|
|
7329
|
+
},
|
|
7330
|
+
"imageAlt": {
|
|
7331
|
+
"type": "string"
|
|
7332
|
+
},
|
|
7333
|
+
"props": {
|
|
7334
|
+
"type": "object",
|
|
7335
|
+
"properties": {
|
|
7336
|
+
"rating": {
|
|
7337
|
+
"type": "object",
|
|
7338
|
+
"properties": {
|
|
7339
|
+
"max": {
|
|
7340
|
+
"type": "number"
|
|
7341
|
+
},
|
|
7342
|
+
"size": {
|
|
7343
|
+
"type": "number"
|
|
7344
|
+
},
|
|
7345
|
+
"color": {
|
|
7346
|
+
"type": "string"
|
|
7347
|
+
}
|
|
7348
|
+
}
|
|
7349
|
+
},
|
|
7350
|
+
"metric": {
|
|
7351
|
+
"type": "object",
|
|
7352
|
+
"properties": {
|
|
7353
|
+
"label": {
|
|
7354
|
+
"type": "string"
|
|
7355
|
+
},
|
|
7356
|
+
"valueExpr": {
|
|
7357
|
+
"type": "string"
|
|
7358
|
+
},
|
|
7359
|
+
"caption": {
|
|
7360
|
+
"type": "string"
|
|
7361
|
+
},
|
|
7362
|
+
"subcaption": {
|
|
7363
|
+
"type": "string"
|
|
7364
|
+
},
|
|
7365
|
+
"captionPosition": {
|
|
7366
|
+
"enum": [
|
|
7367
|
+
"below-value",
|
|
7368
|
+
"below-progress"
|
|
7369
|
+
]
|
|
7370
|
+
},
|
|
7371
|
+
"icon": {
|
|
7372
|
+
"type": "string"
|
|
7373
|
+
},
|
|
7374
|
+
"iconExpr": {
|
|
7375
|
+
"type": "string"
|
|
7376
|
+
},
|
|
7377
|
+
"tone": {
|
|
7378
|
+
"type": "string"
|
|
7379
|
+
},
|
|
7380
|
+
"toneExpr": {
|
|
7381
|
+
"type": "string"
|
|
7382
|
+
},
|
|
7383
|
+
"layout": {
|
|
7384
|
+
"enum": [
|
|
7385
|
+
"value-only",
|
|
7386
|
+
"value+caption",
|
|
7387
|
+
"icon+value+caption",
|
|
7388
|
+
"stacked-center"
|
|
7389
|
+
]
|
|
7390
|
+
},
|
|
7391
|
+
"align": {
|
|
7392
|
+
"enum": [
|
|
7393
|
+
"start",
|
|
7394
|
+
"center",
|
|
7395
|
+
"end"
|
|
7396
|
+
]
|
|
7397
|
+
},
|
|
7398
|
+
"progress": {
|
|
7399
|
+
"type": "object",
|
|
7400
|
+
"properties": {
|
|
7401
|
+
"valueExpr": {
|
|
7402
|
+
"type": "string"
|
|
7403
|
+
},
|
|
7404
|
+
"max": {
|
|
7405
|
+
"type": "number"
|
|
7406
|
+
},
|
|
7407
|
+
"mode": {
|
|
7408
|
+
"enum": [
|
|
7409
|
+
"determinate",
|
|
7410
|
+
"indeterminate"
|
|
7411
|
+
]
|
|
7412
|
+
},
|
|
7413
|
+
"color": {
|
|
7414
|
+
"type": "string"
|
|
7415
|
+
},
|
|
7416
|
+
"colorExpr": {
|
|
7417
|
+
"type": "string"
|
|
7418
|
+
},
|
|
7419
|
+
"trackColor": {
|
|
7420
|
+
"type": "string"
|
|
7421
|
+
}
|
|
7422
|
+
}
|
|
7423
|
+
},
|
|
7424
|
+
"valueClass": {
|
|
7425
|
+
"type": "string"
|
|
7426
|
+
},
|
|
7427
|
+
"valueStyle": {
|
|
7428
|
+
"type": "string"
|
|
7429
|
+
},
|
|
7430
|
+
"showBar": {
|
|
7431
|
+
"type": "boolean"
|
|
7432
|
+
},
|
|
7433
|
+
"barValueExpr": {
|
|
7434
|
+
"type": "string"
|
|
7435
|
+
},
|
|
7436
|
+
"barColor": {
|
|
7437
|
+
"type": "string"
|
|
7438
|
+
},
|
|
7439
|
+
"barVariant": {
|
|
7440
|
+
"enum": [
|
|
7441
|
+
"determinate",
|
|
7442
|
+
"indeterminate"
|
|
7443
|
+
]
|
|
7444
|
+
},
|
|
7445
|
+
"legendExpr": {
|
|
7446
|
+
"type": "string"
|
|
7447
|
+
},
|
|
7448
|
+
"iconPosition": {
|
|
7449
|
+
"enum": [
|
|
7450
|
+
"left",
|
|
7451
|
+
"right",
|
|
7452
|
+
"top"
|
|
7453
|
+
]
|
|
7454
|
+
},
|
|
7455
|
+
"iconColorExpr": {
|
|
7456
|
+
"type": "string"
|
|
7457
|
+
}
|
|
7458
|
+
}
|
|
7459
|
+
},
|
|
7460
|
+
"compose": {
|
|
7461
|
+
"type": "object",
|
|
7462
|
+
"properties": {
|
|
7463
|
+
"items": {
|
|
7464
|
+
"type": "array",
|
|
7465
|
+
"items": {
|
|
7466
|
+
"type": "object"
|
|
7467
|
+
}
|
|
7468
|
+
},
|
|
7469
|
+
"nodes": {
|
|
7470
|
+
"type": "array",
|
|
7471
|
+
"items": {
|
|
7472
|
+
"type": "object"
|
|
7473
|
+
}
|
|
7474
|
+
},
|
|
7475
|
+
"direction": {
|
|
7476
|
+
"enum": [
|
|
7477
|
+
"row",
|
|
7478
|
+
"column"
|
|
7479
|
+
]
|
|
7480
|
+
},
|
|
7481
|
+
"orientation": {
|
|
7482
|
+
"enum": [
|
|
7483
|
+
"horizontal",
|
|
7484
|
+
"vertical"
|
|
7485
|
+
]
|
|
7486
|
+
},
|
|
7487
|
+
"align": {
|
|
7488
|
+
"enum": [
|
|
7489
|
+
"start",
|
|
7490
|
+
"center",
|
|
7491
|
+
"end"
|
|
7492
|
+
]
|
|
7493
|
+
},
|
|
7494
|
+
"gap": {
|
|
7495
|
+
"type": "string"
|
|
7496
|
+
},
|
|
7497
|
+
"wrap": {
|
|
7498
|
+
"type": "boolean"
|
|
7499
|
+
},
|
|
7500
|
+
"separator": {
|
|
7501
|
+
"type": "string"
|
|
7502
|
+
},
|
|
7503
|
+
"class": {
|
|
7504
|
+
"type": "string"
|
|
7505
|
+
},
|
|
7506
|
+
"style": {
|
|
7507
|
+
"type": "string"
|
|
7508
|
+
}
|
|
7509
|
+
}
|
|
7510
|
+
},
|
|
7511
|
+
"component": {
|
|
7512
|
+
"type": "object",
|
|
7513
|
+
"required": [
|
|
7514
|
+
"id"
|
|
7515
|
+
],
|
|
7516
|
+
"properties": {
|
|
7517
|
+
"id": {
|
|
7518
|
+
"type": "string"
|
|
7519
|
+
},
|
|
7520
|
+
"inputs": {
|
|
7521
|
+
"type": "object"
|
|
7522
|
+
},
|
|
7523
|
+
"class": {
|
|
7524
|
+
"type": "string"
|
|
7525
|
+
},
|
|
7526
|
+
"style": {
|
|
7527
|
+
"type": "string"
|
|
7528
|
+
}
|
|
7529
|
+
}
|
|
7530
|
+
}
|
|
7531
|
+
}
|
|
7532
|
+
},
|
|
7533
|
+
"badge": {
|
|
7534
|
+
"type": "object",
|
|
7535
|
+
"properties": {
|
|
7536
|
+
"expr": {
|
|
7537
|
+
"type": "string"
|
|
7538
|
+
},
|
|
7539
|
+
"color": {
|
|
7540
|
+
"type": "string"
|
|
7541
|
+
},
|
|
7542
|
+
"variant": {
|
|
7543
|
+
"enum": [
|
|
7544
|
+
"filled",
|
|
7545
|
+
"outlined"
|
|
7546
|
+
]
|
|
7547
|
+
}
|
|
7548
|
+
}
|
|
7549
|
+
}
|
|
7550
|
+
}
|
|
5431
7551
|
}
|
|
5432
7552
|
}
|
|
5433
7553
|
}
|
|
@@ -6663,57 +8783,357 @@
|
|
|
6663
8783
|
},
|
|
6664
8784
|
"chunks": [
|
|
6665
8785
|
{
|
|
6666
|
-
"chunkIndex": 0,
|
|
6667
|
-
"chunkKind": "summary",
|
|
6668
|
-
"content": "Component ID: praxis-list\nSelector: praxis-list\nFriendly Name: Praxis List\nDescription: Lista com suporte a seleção (single/multiple), agrupamento e templates.\nLib/Package: @praxisui/list\nTags: widget, list, lista, selection, configurable\nInputs:\n - config (PraxisListConfig)\n - listId (string)\n - componentInstanceId (string)\n - configPersistenceStrategy ('local-first' | 'input-first')\n - queryContext (PraxisDataQueryContext | null)\n - form (FormGroup)\n - enableCustomization (boolean)\nOutputs:\n - itemClick (ListItemEvent)\n - actionClick (ListActionEvent)\n - selectionChange (ListSelectionEvent)\n",
|
|
6669
|
-
"sourcePointer": "projects/praxis-list/src/lib/praxis-list.metadata.ts",
|
|
6670
|
-
"contentHash": "2517f19d442043072650cb9fa6a34568726535c778f0a4bbbc93d0b01b5df08a",
|
|
8786
|
+
"chunkIndex": 0,
|
|
8787
|
+
"chunkKind": "summary",
|
|
8788
|
+
"content": "Component ID: praxis-list\nSelector: praxis-list\nFriendly Name: Praxis List\nDescription: Lista com suporte a seleção (single/multiple), agrupamento e templates.\nLib/Package: @praxisui/list\nTags: widget, list, lista, selection, configurable\nInputs:\n - config (PraxisListConfig)\n - listId (string)\n - componentInstanceId (string)\n - configPersistenceStrategy ('local-first' | 'input-first')\n - queryContext (PraxisDataQueryContext | null)\n - form (FormGroup)\n - enableCustomization (boolean)\nOutputs:\n - itemClick (ListItemEvent)\n - actionClick (ListActionEvent)\n - selectionChange (ListSelectionEvent)\n",
|
|
8789
|
+
"sourcePointer": "projects/praxis-list/src/lib/praxis-list.metadata.ts",
|
|
8790
|
+
"contentHash": "2517f19d442043072650cb9fa6a34568726535c778f0a4bbbc93d0b01b5df08a",
|
|
8791
|
+
"sourceKind": "component_definition",
|
|
8792
|
+
"sourceId": "praxis-list",
|
|
8793
|
+
"corpusVersion": "1.0.0"
|
|
8794
|
+
},
|
|
8795
|
+
{
|
|
8796
|
+
"chunkIndex": 1,
|
|
8797
|
+
"chunkKind": "capabilities",
|
|
8798
|
+
"content": "Component Capability:\n - Path: id\n Category: meta\n Kind: string\n Description: List id (used by persistence and editor).\n\nComponent Capability:\n - Path: dataSource\n Category: data\n Kind: object\n Description: Local or remote data source.\n\nComponent Capability:\n - Path: dataSource.data\n Category: data\n Kind: array\n Description: Local data array.\n\nComponent Capability:\n - Path: dataSource.resourcePath\n Category: data\n Kind: string\n Description: Remote resource path for GenericCrudService.\n\nComponent Capability:\n - Path: dataSource.query\n Category: data\n Kind: object\n Description: Initial query sent to /filter.\n\nComponent Capability:\n - Path: dataSource.sort\n Category: data\n Kind: array\n Description: Initial sort array (ex.: [\"name,asc\"]).\n\nComponent Capability:\n - Path: dataSource.sort[]\n Category: data\n Kind: string\n Description: Single sort entry (field,dir).\n\nComponent Capability:\n - Path: layout\n Category: layout\n Kind: object\n Description: Layout settings.\n\nComponent Capability:\n - Path: layout.variant\n Category: layout\n Kind: enum\n Description: Layout variant.\n\nComponent Capability:\n - Path: layout.density\n Category: layout\n Kind: enum\n Description: Layout density.\n\nComponent Capability:\n - Path: layout.itemSpacing\n Category: layout\n Kind: enum\n Description: Spacing between rendered items.\n\nComponent Capability:\n - Path: layout.lines\n Category: layout\n Kind: enum\n Description: Number of visible lines.\n\nComponent Capability:\n - Path: layout.dividers\n Category: layout\n Kind: enum\n Description: Dividers between items.\n\nComponent Capability:\n - Path: layout.model\n Category: layout\n Kind: enum\n Description: Visual model for items.\n\nComponent Capability:\n - Path: layout.groupBy\n Category: layout\n Kind: string\n Description: Field name for grouping.\n\nComponent Capability:\n - Path: layout.stickySectionHeader\n Category: layout\n Kind: boolean\n Description: Sticky section header.\n\nComponent Capability:\n - Path: layout.virtualScroll\n Category: layout\n Kind: boolean\n Description: Enable virtual scroll (when supported).\n\nComponent Capability:\n - Path: layout.pageSize\n Category: layout\n Kind: number\n Description: Remote page size.\n\nComponent Capability:\n - Path: layout.rowLayout\n Category: layout\n Kind: object\n Description: Row layout grid/flex configuration for list variant.\n\nComponent Capability:\n - Path: layout.rowLayout.type\n Category: layout\n Kind: enum\n Description: Row layout rendering type.\n\nComponent Capability:\n - Path: layout.rowLayout.columns\n Category: layout\n Kind: array\n Description: Stable row layout columns.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].slot\n Category: layout\n Kind: enum\n Description: Runtime-supported row layout slot.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].width\n Category: layout\n Kind: string\n Description: CSS width for a row layout column.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].minWidth\n Category: layout\n Kind: string\n Description: Minimum CSS width for a row layout column.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].maxWidth\n Category: layout\n Kind: string\n Description: Maximum CSS width for a row layout column.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].align\n Category: layout\n Kind: enum\n Description: Column content alignment.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].justify\n Category: layout\n Kind: enum\n Description: Column grid justification.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].class\n Category: layout\n Kind: string\n Description: CSS class for a row layout column.\n\nComponent Capability:\n - Path: layout.rowLayout.columns[].style\n Category: layout\n Kind: string\n Description: Inline style for a row layout column.\n\nComponent Capability:\n - Path: layout.rowLayout.gap\n Category: layout\n Kind: string\n Description: Gap between row layout columns.\n\nComponent Capability:\n - Path: layout.rowLayout.align\n Category: layout\n Kind: enum\n Description: Vertical alignment for the row layout.\n\nComponent Capability:\n - Path: layout.rowLayout.itemAlignY\n Category: layout\n Kind: enum\n Description: Alias for row vertical alignment.\n\nComponent Capability:\n - Path: layout.rowLayout.class\n Category: layout\n Kind: string\n Description: CSS class for row layout content.\n\nComponent Capability:\n - Path: layout.rowLayout.style\n Category: layout\n Kind: string\n Description: Inline style for row layout content.\n\nComponent Capability:\n - Path: skin\n Category: skin\n Kind: object\n Description: Skin settings.\n\nComponent Capability:\n - Path: skin.type\n Category: skin\n Kind: enum\n Description: Skin type.\n\nComponent Capability:\n - Path: skin.gradient\n Category: skin\n Kind: object\n Description: Gradient options.\n\nComponent Capability:\n - Path: skin.gradient.from\n Category: skin\n Kind: string\n Description: Gradient start color.\n\nComponent Capability:\n - Path: skin.gradient.to\n Category: skin\n Kind: string\n Description: Gradient end color.\n\nComponent Capability:\n - Path: skin.gradient.angle\n Category: skin\n Kind: number\n Description: Gradient angle in degrees.\n\nComponent Capability:\n - Path: skin.radius\n Category: skin\n Kind: string\n Description: Border radius.\n\nComponent Capability:\n - Path: skin.shadow\n Category: skin\n Kind: string\n Description: Box shadow.\n\nComponent Capability:\n - Path: skin.border\n Category: skin\n Kind: string\n Description: Border style.\n\nComponent Capability:\n - Path: skin.backdropBlur\n Category: skin\n Kind: string\n Description: Backdrop blur (glass).\n\nComponent Capability:\n - Path: skin.class\n Category: skin\n Kind: string\n Description: Custom CSS class.\n\nComponent Capability:\n - Path: skin.inlineStyle\n Category: skin\n Kind: string\n Description: Inline CSS (sanitized).\n\nComponent Capability:\n - Path: selection\n Category: selection\n Kind: object\n Description: Selection settings.\n\nComponent Capability:\n - Path: selection.mode\n Category: selection\n Kind: enum\n Description: Selection mode.\n\nComponent Capability:\n - Path: selection.formControlName\n Category: selection\n Kind: string\n Description: FormControl name for binding.\n\nComponent Capability:\n - Path: selection.formControlPath\n Category: selection\n Kind: string\n Description: FormControl path for binding.\n\nComponent Capability:\n - Path: selection.compareBy\n Category: selection\n Kind: string\n Description: Field used to compare selections.\n\nComponent Capability:\n - Path: selection.return\n Category: selection\n Kind: enum\n Description: Selection return payload.\n\nComponent Capability:\n - Path: export\n Category: export\n Kind: object\n Description: Collection export configuration.\n\nComponent Capability:\n - Path: export.enabled\n Category: export\n Kind: boolean\n Description: Show export actions for the list.\n\nComponent Capability:\n - Path: export.formats\n Category: export\n Kind: array\n Description: Allowed export formats.\n\nComponent Capability:\n - Path: export.formats[]\n Category: export\n Kind: enum\n Description: Single export format.\n\nComponent Capability:\n - Path: export.general.scope\n Category: export\n Kind: enum\n Description: Collection export scope.\n\nComponent Capability:\n - Path: export.general.includeHeaders\n Category: export\n Kind: boolean\n Description: Include header row for tabular exports.\n\nComponent Capability:\n - Path: export.general.maxRows\n Category: export\n Kind: number\n Description: Maximum rows to include in local export.",
|
|
8799
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/list-ai-capabilities.ts",
|
|
8800
|
+
"contentHash": "282aa9c1a7dcf19e115f89807cc0ad13b835fba018d672cc8e8d286b9b0ef708",
|
|
8801
|
+
"sourceKind": "component_definition",
|
|
8802
|
+
"sourceId": "praxis-list",
|
|
8803
|
+
"corpusVersion": "1.0.0"
|
|
8804
|
+
},
|
|
8805
|
+
{
|
|
8806
|
+
"chunkIndex": 2,
|
|
8807
|
+
"chunkKind": "capabilities",
|
|
8808
|
+
"content": "Component Capability:\n - Path: export.general.defaultFileName\n Category: export\n Kind: string\n Description: Default export file name.\n\nComponent Capability:\n - Path: export.general.includeFields\n Category: export\n Kind: array\n Description: Field paths to include, or \"all\" for inferred object keys.\n\nComponent Capability:\n - Path: export.general.applyFormatting\n Category: export\n Kind: boolean\n Description: Apply configured field formatting when available.\n\nComponent Capability:\n - Path: interaction\n Category: interaction\n Kind: object\n Description: Expandable row interaction settings.\n\nComponent Capability:\n - Path: interaction.expandable\n Category: interaction\n Kind: boolean\n Description: Enable inline row expansion.\n\nComponent Capability:\n - Path: interaction.expandTrigger\n Category: interaction\n Kind: enum\n Description: How expansion is triggered.\n\nComponent Capability:\n - Path: interaction.expandMode\n Category: interaction\n Kind: enum\n Description: Whether one or many rows may be expanded.\n\nComponent Capability:\n - Path: interaction.expandPlacement\n Category: interaction\n Kind: enum\n Description: Where the expansion control is rendered.\n\nComponent Capability:\n - Path: templating\n Category: templating\n Kind: object\n Description: Templating settings.\n\nComponent Capability:\n - Path: templating.metaPlacement\n Category: templating\n Kind: enum\n Description: Meta placement in list variant.\n\nComponent Capability:\n - Path: templating.metaPrefixIcon\n Category: templating\n Kind: string\n Description: Prefix icon for meta.\n\nComponent Capability:\n - Path: templating.statusPosition\n Category: templating\n Kind: enum\n Description: Status position in cards/tiles.\n\nComponent Capability:\n - Path: templating.chipColorMap\n Category: templating\n Kind: object\n Description: Map value -> chip color.\n\nComponent Capability:\n - Path: templating.chipLabelMap\n Category: templating\n Kind: object\n Description: Map value -> label.\n\nComponent Capability:\n - Path: templating.iconColorMap\n Category: templating\n Kind: object\n Description: Map value/icon -> color.\n\nComponent Capability:\n - Path: templating.features\n Category: templating\n Kind: array\n Description: Extra feature line entries.\n\nComponent Capability:\n - Path: templating.features[].icon\n Category: templating\n Kind: string\n Description: Feature icon.\n\nComponent Capability:\n - Path: templating.features[].expr\n Category: templating\n Kind: expression\n Description: Templating expression for feature label; not Json Logic.\n\nComponent Capability:\n - Path: templating.features[].class\n Category: templating\n Kind: string\n Description: Feature CSS class.\n\nComponent Capability:\n - Path: templating.features[].style\n Category: templating\n Kind: string\n Description: Feature inline CSS.\n\nComponent Capability:\n - Path: templating.featuresVisible\n Category: templating\n Kind: boolean\n Description: Show features line.\n\nComponent Capability:\n - Path: templating.featuresMode\n Category: templating\n Kind: enum\n Description: Features render mode.\n\nComponent Capability:\n - Path: templating.skeleton\n Category: templating\n Kind: object\n Description: Skeleton loading config.\n\nComponent Capability:\n - Path: templating.skeleton.count\n Category: templating\n Kind: number\n Description: Skeleton items count.\n\nComponent Capability:\n - Path: actions\n Category: actions\n Kind: array\n Description: Item actions array.\n\nComponent Capability:\n - Path: actions[]\n Category: actions\n Kind: object\n Description: Single item action entry.\n\nComponent Capability:\n - Path: actions[].id\n Category: actions\n Kind: string\n Description: Action id.\n\nComponent Capability:\n - Path: actions[].icon\n Category: actions\n Kind: string\n Description: Action icon.\n\nComponent Capability:\n - Path: actions[].label\n Category: actions\n Kind: string\n Description: Action label.\n\nComponent Capability:\n - Path: actions[].color\n Category: actions\n Kind: string\n Description: Action color.\n\nComponent Capability:\n - Path: actions[].kind\n Category: actions\n Kind: enum\n Description: Action render kind.\n\nComponent Capability:\n - Path: actions[].buttonVariant\n Category: actions\n Kind: enum\n Description: Action button variant.\n\nComponent Capability:\n - Path: actions[].showIf\n Category: actions\n Kind: expression\n Description: Json Logic visibility condition for the current row.\n\nComponent Capability:\n - Path: actions[].globalAction.[actionId]\n Category: actions\n Kind: string\n Description: Canonical global app action id (ex.: \"toast.success\" ou \"navigation.openRoute\").\n\nComponent Capability:\n - Path: actions[].globalAction.payload\n Category: actions\n Kind: object\n Description: Structured payload for the global app action (JSON/template), including internal route payloads resolved from item context.\n\nComponent Capability:\n - Path: actions[].globalAction.payloadExpr\n Category: actions\n Kind: expression\n Description: Advanced payload expression for the global app action when structured payload is not authored.\n\nComponent Capability:\n - Path: actions[].emitLocal\n Category: actions\n Kind: boolean\n Description: Emit local actionClick even when globalAction is set.\n\nComponent Capability:\n - Path: actions[].showLoading\n Category: actions\n Kind: boolean\n Description: Show loading state while a global action executes.\n\nComponent Capability:\n - Path: actions[].placement\n Category: actions\n Kind: enum\n Description: Action placement in row layout actions or trailing slot.\n\nComponent Capability:\n - Path: actions[].confirmation\n Category: actions\n Kind: object\n Description: Confirmation prompt before executing the action.\n\nComponent Capability:\n - Path: actions[].confirmation.title\n Category: actions\n Kind: string\n Description: Confirmation title.\n\nComponent Capability:\n - Path: actions[].confirmation.message\n Category: actions\n Kind: string\n Description: Confirmation message.\n\nComponent Capability:\n - Path: actions[].confirmation.type\n Category: actions\n Kind: enum\n Description: Confirmation severity.\n\nComponent Capability:\n - Path: rules\n Category: rules\n Kind: object\n Description: Conditional list item styling and slot override rules.\n\nComponent Capability:\n - Path: rules.itemStyles\n Category: rules\n Kind: array\n Description: Conditional item style rules.\n\nComponent Capability:\n - Path: rules.itemStyles[].id\n Category: rules\n Kind: string\n Description: Stable item style rule id.\n\nComponent Capability:\n - Path: rules.itemStyles[].condition\n Category: rules\n Kind: expression\n Description: Json Logic condition in row context.\n\nComponent Capability:\n - Path: rules.itemStyles[].class\n Category: rules\n Kind: string\n Description: CSS class applied when the rule matches.\n\nComponent Capability:\n - Path: rules.itemStyles[].style\n Category: rules\n Kind: string\n Description: Inline style applied when the rule matches.\n\nComponent Capability:\n - Path: rules.itemStyles[].border\n Category: rules\n Kind: string\n Description: Border style override applied when the rule matches.\n\nComponent Capability:\n - Path: rules.itemStyles[].background\n Category: rules\n Kind: string\n Description: Background style override applied when the rule matches.\n\nComponent Capability:\n - Path: rules.itemStyles[].effects\n Category: rules\n Kind: array\n Description: Canonical conditional effect array aligned with PraxisRuntimeConditionalEffectRule<ListItemStyleEffect>.\n\nComponent Capability:\n - Path: rules.itemStyles[].effects[].kind\n Category: rules\n Kind: enum\n Description: Discriminator for list item style effects.",
|
|
8809
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/list-ai-capabilities.ts",
|
|
8810
|
+
"contentHash": "555fb06f5ff19c7ac5c9251615e0d12d78a6531e00007d555561930ad952038d",
|
|
8811
|
+
"sourceKind": "component_definition",
|
|
8812
|
+
"sourceId": "praxis-list",
|
|
8813
|
+
"corpusVersion": "1.0.0"
|
|
8814
|
+
},
|
|
8815
|
+
{
|
|
8816
|
+
"chunkIndex": 3,
|
|
8817
|
+
"chunkKind": "capabilities",
|
|
8818
|
+
"content": "Component Capability:\n - Path: rules.slotOverrides\n Category: rules\n Kind: array\n Description: Conditional slot template override rules.\n\nComponent Capability:\n - Path: rules.slotOverrides[].id\n Category: rules\n Kind: string\n Description: Stable slot override rule id.\n\nComponent Capability:\n - Path: rules.slotOverrides[].slot\n Category: rules\n Kind: enum\n Description: Templating slot affected by the override.\n\nComponent Capability:\n - Path: rules.slotOverrides[].condition\n Category: rules\n Kind: expression\n Description: Json Logic condition in row context.\n\nComponent Capability:\n - Path: rules.slotOverrides[].template\n Category: rules\n Kind: object\n Description: Template override applied when the rule matches.\n\nComponent Capability:\n - Path: rules.slotOverrides[].class\n Category: rules\n Kind: string\n Description: CSS class appended when the rule matches.\n\nComponent Capability:\n - Path: rules.slotOverrides[].style\n Category: rules\n Kind: string\n Description: Inline style appended when the rule matches.\n\nComponent Capability:\n - Path: rules.slotOverrides[].hide\n Category: rules\n Kind: boolean\n Description: Hide the slot when the rule matches.\n\nComponent Capability:\n - Path: rules.slotOverrides[].effects\n Category: rules\n Kind: array\n Description: Canonical conditional effect array aligned with PraxisRuntimeConditionalEffectRule<ListSlotOverrideEffect>.\n\nComponent Capability:\n - Path: rules.slotOverrides[].effects[].kind\n Category: rules\n Kind: enum\n Description: Discriminator for list slot override effects.\n\nComponent Capability:\n - Path: expansion\n Category: expansion\n Kind: object\n Description: Inline expansion sections and remote detail contract.\n\nComponent Capability:\n - Path: expansion.sections\n Category: expansion\n Kind: array\n Description: Expansion detail sections.\n\nComponent Capability:\n - Path: expansion.sections[].id\n Category: expansion\n Kind: string\n Description: Stable expansion section id.\n\nComponent Capability:\n - Path: expansion.sections[].title\n Category: expansion\n Kind: string\n Description: Expansion section title.\n\nComponent Capability:\n - Path: expansion.sections[].type\n Category: expansion\n Kind: enum\n Description: Expansion section renderer type.\n\nComponent Capability:\n - Path: expansion.sections[].itemsExpr\n Category: expansion\n Kind: expression\n Description: Expression used to resolve section items from the row.\n\nComponent Capability:\n - Path: expansion.sections[].document\n Category: expansion\n Kind: object\n Description: Canonical RichContentDocument rendered when type=rich-content.\n\nComponent Capability:\n - Path: expansion.sections[].documentExpr\n Category: expansion\n Kind: expression\n Description: Expression resolving to a RichContentDocument for type=rich-content.\n\nComponent Capability:\n - Path: expansion.sections[].emptyLabel\n Category: expansion\n Kind: string\n Description: Empty label for an expansion section.\n\nComponent Capability:\n - Path: expansion.sections[].metadata\n Category: expansion\n Kind: object\n Description: Metadata rendering options for metadata expansion sections.\n\nComponent Capability:\n - Path: expansion.sections[].component\n Category: expansion\n Kind: object\n Description: Runtime component rendering options for component expansion sections.\n\nComponent Capability:\n - Path: expansion.sections[].class\n Category: expansion\n Kind: string\n Description: CSS class for an expansion section.\n\nComponent Capability:\n - Path: expansion.sections[].style\n Category: expansion\n Kind: string\n Description: Inline style for an expansion section.\n\nComponent Capability:\n - Path: expansion.sections[].showIf\n Category: expansion\n Kind: expression\n Description: Json Logic visibility condition for an expansion section.\n\nComponent Capability:\n - Path: expansion.dataSource\n Category: expansion\n Kind: object\n Description: Expansion detail data source.\n\nComponent Capability:\n - Path: expansion.dataSource.mode\n Category: expansion\n Kind: enum\n Description: Expansion data source mode.\n\nComponent Capability:\n - Path: expansion.dataSource.resource\n Category: expansion\n Kind: object\n Description: Canonical resource descriptor for expansion details.\n\nComponent Capability:\n - Path: expansion.dataSource.resource.kind\n Category: expansion\n Kind: string\n Description: Canonical expansion resource kind.\n\nComponent Capability:\n - Path: expansion.dataSource.resource.id\n Category: expansion\n Kind: string\n Description: Canonical expansion resource id.\n\nComponent Capability:\n - Path: expansion.dataSource.resource.version\n Category: expansion\n Kind: string\n Description: Canonical expansion resource version.\n\nComponent Capability:\n - Path: expansion.dataSource.resourcePath\n Category: expansion\n Kind: object\n Description: Dynamic resource path descriptor for expansion details.\n\nComponent Capability:\n - Path: expansion.dataSource.resourcePath.path\n Category: expansion\n Kind: string\n Description: Expression-backed remote path for expansion details.\n\nComponent Capability:\n - Path: expansion.dataSource.resourcePath.method\n Category: expansion\n Kind: enum\n Description: HTTP method for dynamic expansion resource path.\n\nComponent Capability:\n - Path: expansion.dataSource.resourcePath.paramsMap\n Category: expansion\n Kind: object\n Description: Parameter map for dynamic expansion resource path.\n\nComponent Capability:\n - Path: expansion.dataSource.resourceAllowList\n Category: expansion\n Kind: array\n Description: Allowlist for dynamic expansion resource paths.\n\nComponent Capability:\n - Path: expansion.dataSource.fallbackMode\n Category: expansion\n Kind: enum\n Description: Fallback mode for expansion detail loading.\n\nComponent Capability:\n - Path: expansion.dataSource.cache\n Category: expansion\n Kind: object\n Description: Expansion detail cache configuration.\n\nComponent Capability:\n - Path: expansion.dataSource.cache.enabled\n Category: expansion\n Kind: boolean\n Description: Enable expansion detail cache.\n\nComponent Capability:\n - Path: expansion.dataSource.cancelOnCollapse\n Category: expansion\n Kind: boolean\n Description: Cancel expansion detail loading when a row collapses.\n\nComponent Capability:\n - Path: expansion.schemaContract\n Category: expansion\n Kind: object\n Description: Fail-closed schema contract for remote expansion details.\n\nComponent Capability:\n - Path: expansion.schemaContract.kind\n Category: expansion\n Kind: string\n Description: Expansion schema contract kind.\n\nComponent Capability:\n - Path: expansion.schemaContract.version\n Category: expansion\n Kind: string\n Description: Expansion schema contract version.\n\nComponent Capability:\n - Path: expansion.schemaContract.allowedNodes\n Category: expansion\n Kind: array\n Description: Allowed remote expansion node types.\n\nComponent Capability:\n - Path: expansion.schemaContract.maxSections\n Category: expansion\n Kind: number\n Description: Maximum number of remote expansion sections.\n\nComponent Capability:\n - Path: expansion.schemaContract.maxItemsPerSection\n Category: expansion\n Kind: number\n Description: Maximum number of items per remote expansion section.\n\nComponent Capability:\n - Path: expansion.schemaContract.requireSectionIds\n Category: expansion\n Kind: boolean\n Description: Require explicit ids for remote expansion sections.\n\nComponent Capability:\n - Path: expansion.rendering\n Category: expansion\n Kind: object\n Description: Expansion shell rendering configuration.\n\nComponent Capability:\n - Path: expansion.rendering.shell\n Category: expansion\n Kind: enum\n Description: Expansion shell attachment mode.",
|
|
8819
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/list-ai-capabilities.ts",
|
|
8820
|
+
"contentHash": "ae24c04a1cfee608d4900ad3a7b4b0e43141d3fc73995b07b041d9752d5464b8",
|
|
8821
|
+
"sourceKind": "component_definition",
|
|
8822
|
+
"sourceId": "praxis-list",
|
|
8823
|
+
"corpusVersion": "1.0.0"
|
|
8824
|
+
},
|
|
8825
|
+
{
|
|
8826
|
+
"chunkIndex": 4,
|
|
8827
|
+
"chunkKind": "capabilities",
|
|
8828
|
+
"content": "Component Capability:\n - Path: expansion.rendering.columns\n Category: expansion\n Kind: enum\n Description: Expansion detail column count.\n\nComponent Capability:\n - Path: expansion.rendering.gap\n Category: expansion\n Kind: string\n Description: Gap between expansion sections.\n\nComponent Capability:\n - Path: expansion.rendering.padding\n Category: expansion\n Kind: string\n Description: Padding inside the expansion shell.\n\nComponent Capability:\n - Path: expansion.rendering.class\n Category: expansion\n Kind: string\n Description: CSS class for the expansion shell.\n\nComponent Capability:\n - Path: expansion.rendering.style\n Category: expansion\n Kind: string\n Description: Inline style for the expansion shell.\n\nComponent Capability:\n - Path: expansion.rendering.loadingTemplate\n Category: expansion\n Kind: object\n Description: Template rendered while expansion detail loads.\n\nComponent Capability:\n - Path: expansion.rendering.errorTemplate\n Category: expansion\n Kind: object\n Description: Template rendered when expansion detail loading fails.\n\nComponent Capability:\n - Path: ui\n Category: ui\n Kind: object\n Description: Lightweight toolbar UI.\n\nComponent Capability:\n - Path: ui.showSearch\n Category: ui\n Kind: boolean\n Description: Show search input.\n\nComponent Capability:\n - Path: ui.searchField\n Category: ui\n Kind: string\n Description: Search field.\n\nComponent Capability:\n - Path: ui.searchPlaceholder\n Category: ui\n Kind: string\n Description: Search placeholder.\n\nComponent Capability:\n - Path: ui.showSort\n Category: ui\n Kind: boolean\n Description: Show sort selector.\n\nComponent Capability:\n - Path: ui.sortOptions\n Category: ui\n Kind: array\n Description: Sort options (string or {label,value}).\n\nComponent Capability:\n - Path: ui.sortOptions[].label\n Category: ui\n Kind: string\n Description: Sort option label.\n\nComponent Capability:\n - Path: ui.sortOptions[].value\n Category: ui\n Kind: string\n Description: Sort option value.\n\nComponent Capability:\n - Path: ui.showRange\n Category: ui\n Kind: boolean\n Description: Show range in footer.\n\nComponent Capability:\n - Path: i18n\n Category: i18n\n Kind: object\n Description: i18n map.\n\nComponent Capability:\n - Path: i18n.locale\n Category: i18n\n Kind: string\n Description: Locale (ex.: pt-BR).\n\nComponent Capability:\n - Path: i18n.currency\n Category: i18n\n Kind: string\n Description: Currency code (ex.: BRL).\n\nComponent Capability:\n - Path: i18n.localization\n Category: i18n\n Kind: object\n Description: Core localization defaults reused by list template pipes.\n\nComponent Capability:\n - Path: a11y\n Category: a11y\n Kind: object\n Description: Accessibility settings.\n\nComponent Capability:\n - Path: a11y.ariaLabel\n Category: a11y\n Kind: string\n Description: aria-label for container.\n\nComponent Capability:\n - Path: a11y.ariaLabelledBy\n Category: a11y\n Kind: string\n Description: aria-labelledby for container.\n\nComponent Capability:\n - Path: a11y.highContrast\n Category: a11y\n Kind: boolean\n Description: High contrast mode.\n\nComponent Capability:\n - Path: a11y.reduceMotion\n Category: a11y\n Kind: boolean\n Description: Reduce motion.\n\nComponent Capability:\n - Path: events\n Category: events\n Kind: object\n Description: Event mappings.\n\nComponent Capability:\n - Path: events.itemClick\n Category: events\n Kind: string\n Description: Mapped itemClick event name.\n\nComponent Capability:\n - Path: events.actionClick\n Category: events\n Kind: string\n Description: Mapped actionClick event name.\n\nComponent Capability:\n - Path: events.selectionChange\n Category: events\n Kind: string\n Description: Mapped selectionChange event name.\n\nComponent Capability:\n - Path: events.exportAction\n Category: events\n Kind: string\n Description: Mapped exportAction event name.\n\nComponent Capability:\n - Path: events.loaded\n Category: events\n Kind: string\n Description: Mapped loaded event name.\n\nCapability Note:\n - Template expressions support only ${item.path} and simple pipes: bool/date/map/number.\n\nCapability Note:\n - Taxonomia editorial: templating.*.expr continua no dominio de template; conditions booleanas de acoes, rules e expansion usam Json Logic canonico.\n\nCapability Note:\n - actions[].showIf uses Json Logic, for example {\"==\":[{\"var\":\"row.status\"},\"done\"]}.\n\nCapability Note:\n - Arrays should be merged by id/expr to avoid replacing existing items.\n\nCapability Note:\n - dataSource.data overrides resourcePath when provided.\n\nCapability Note:\n - layout.variant supports list, cards and tiles.\n\nCapability Note:\n - Colors accept theme tokens (primary/accent/warn), M3 tokens (var(--md-sys-color-*)), or custom CSS colors.",
|
|
8829
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/list-ai-capabilities.ts",
|
|
8830
|
+
"contentHash": "a8b86aacb88ec7b3b7407a78cebd14f9c9dfa9c43323ce38c0657906ed0858ad",
|
|
8831
|
+
"sourceKind": "component_definition",
|
|
8832
|
+
"sourceId": "praxis-list",
|
|
8833
|
+
"corpusVersion": "1.0.0"
|
|
8834
|
+
},
|
|
8835
|
+
{
|
|
8836
|
+
"chunkIndex": 5,
|
|
8837
|
+
"chunkKind": "authoring_manifest",
|
|
8838
|
+
"content": "{\"operationId\":\"list.id.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set list id Effects: set-value. Set the stable list id to employees-list.\",\"scope\":\"meta\",\"target\":{\"kind\":\"meta\",\"resolver\":\"list-root-config\",\"required\":false},\"inputContract\":{\"required\":[\"id\"],\"properties\":[\"id\"],\"semanticTerms\":[\"id\"]},\"effects\":[\"set-value\"],\"affectedPaths\":[\"id\"],\"validators\":[{\"validatorId\":\"list-id-stable\",\"level\":\"error\",\"code\":\"PL000\",\"description\":\"List id must remain stable for persistence and editor reopen flows.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-list-id\",\"request\":\"Set the stable list id to employees-list.\",\"operationId\":\"list.id.set\",\"params\":{\"id\":\"employees-list\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8839
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8840
|
+
"contentHash": "e06f7c0beb9a8fab52cbc43575f110d6b67435735ab82e24ed218306fff17952",
|
|
8841
|
+
"sourceKind": "component_definition",
|
|
8842
|
+
"sourceId": "praxis-list",
|
|
8843
|
+
"corpusVersion": "1.0.0"
|
|
8844
|
+
},
|
|
8845
|
+
{
|
|
8846
|
+
"chunkIndex": 6,
|
|
8847
|
+
"chunkKind": "authoring_manifest",
|
|
8848
|
+
"content": "{\"operationId\":\"item.primaryText.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set primary item text Effects: merge-object. Use name as title and department as subtitle. Use missingField as the list title.\",\"scope\":\"itemTemplate\",\"target\":{\"kind\":\"primaryText\",\"resolver\":\"templating-primary\",\"required\":false},\"inputContract\":{\"required\":[\"type\",\"expr\"],\"properties\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\"],\"semanticTerms\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\",\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\",\"filled\",\"outlined\",\"props.rating\",\"props.metric\",\"props.compose\",\"props.component\",\"badge.expr\",\"badge.color\",\"badge.variant\",\"props.rating.max\",\"props.rating.size\",\"props.rating.color\",\"props.metric.label\",\"props.metric.valueExpr\",\"props.metric.caption\",\"props.metric.subcaption\",\"props.metric.captionPosition\",\"props.metric.icon\",\"props.metric.iconExpr\",\"props.metric.tone\",\"props.metric.toneExpr\",\"props.metric.layout\",\"props.metric.align\",\"props.metric.progress\",\"props.metric.valueClass\",\"props.metric.valueStyle\",\"props.metric.showBar\",\"props.metric.barValueExpr\",\"props.metric.barColor\",\"props.metric.barVariant\",\"props.metric.legendExpr\",\"props.metric.iconPosition\",\"props.metric.iconColorExpr\",\"props.compose.items\",\"props.compose.nodes\",\"props.compose.direction\",\"props.compose.orientation\",\"props.compose.align\",\"props.compose.gap\",\"props.compose.wrap\",\"props.compose.separator\",\"props.compose.class\",\"props.compose.style\",\"props.component.id\",\"props.component.inputs\",\"props.component.class\",\"props.component.style\",\"below-value\",\"below-progress\",\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\",\"start\",\"center\",\"end\",\"props.metric.progress.valueExpr\",\"props.metric.progress.max\",\"props.metric.progress.mode\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating.primary\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"bind-title-subtitle-fields\",\"request\":\"Use name as title and department as subtitle.\",\"operationId\":\"item.primaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.name}\"},\"isPositive\":true}],\"negativeExamples\":[{\"id\":\"reject-missing-field-binding\",\"request\":\"Use missingField as the list title.\",\"operationId\":\"item.primaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.missingField}\"},\"isPositive\":false}]}",
|
|
8849
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8850
|
+
"contentHash": "6bfb9308db272094d73eba2cd1ab2e5882d39e574ada2b97e6b4408f22622e2f",
|
|
8851
|
+
"sourceKind": "component_definition",
|
|
8852
|
+
"sourceId": "praxis-list",
|
|
8853
|
+
"corpusVersion": "1.0.0"
|
|
8854
|
+
},
|
|
8855
|
+
{
|
|
8856
|
+
"chunkIndex": 7,
|
|
8857
|
+
"chunkKind": "authoring_manifest",
|
|
8858
|
+
"content": "{\"operationId\":\"item.secondaryText.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set secondary item text Effects: merge-object. Show department below the title.\",\"scope\":\"itemTemplate\",\"target\":{\"kind\":\"secondaryText\",\"resolver\":\"templating-secondary\",\"required\":false},\"inputContract\":{\"required\":[\"type\",\"expr\"],\"properties\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\"],\"semanticTerms\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\",\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\",\"filled\",\"outlined\",\"props.rating\",\"props.metric\",\"props.compose\",\"props.component\",\"badge.expr\",\"badge.color\",\"badge.variant\",\"props.rating.max\",\"props.rating.size\",\"props.rating.color\",\"props.metric.label\",\"props.metric.valueExpr\",\"props.metric.caption\",\"props.metric.subcaption\",\"props.metric.captionPosition\",\"props.metric.icon\",\"props.metric.iconExpr\",\"props.metric.tone\",\"props.metric.toneExpr\",\"props.metric.layout\",\"props.metric.align\",\"props.metric.progress\",\"props.metric.valueClass\",\"props.metric.valueStyle\",\"props.metric.showBar\",\"props.metric.barValueExpr\",\"props.metric.barColor\",\"props.metric.barVariant\",\"props.metric.legendExpr\",\"props.metric.iconPosition\",\"props.metric.iconColorExpr\",\"props.compose.items\",\"props.compose.nodes\",\"props.compose.direction\",\"props.compose.orientation\",\"props.compose.align\",\"props.compose.gap\",\"props.compose.wrap\",\"props.compose.separator\",\"props.compose.class\",\"props.compose.style\",\"props.component.id\",\"props.component.inputs\",\"props.component.class\",\"props.component.style\",\"below-value\",\"below-progress\",\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\",\"start\",\"center\",\"end\",\"props.metric.progress.valueExpr\",\"props.metric.progress.max\",\"props.metric.progress.mode\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating.secondary\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"bind-secondary-field\",\"request\":\"Show department below the title.\",\"operationId\":\"item.secondaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.department}\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8859
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8860
|
+
"contentHash": "45c702b093b8b9e0da171884a636ff7c4ab8e69659f0d948344d43b712a18f2a",
|
|
6671
8861
|
"sourceKind": "component_definition",
|
|
6672
8862
|
"sourceId": "praxis-list",
|
|
6673
8863
|
"corpusVersion": "1.0.0"
|
|
6674
8864
|
},
|
|
6675
8865
|
{
|
|
6676
|
-
"chunkIndex":
|
|
6677
|
-
"chunkKind": "
|
|
6678
|
-
"content": "
|
|
6679
|
-
"sourcePointer": "projects/praxis-list/src/lib/ai/list-
|
|
6680
|
-
"contentHash": "
|
|
8866
|
+
"chunkIndex": 8,
|
|
8867
|
+
"chunkKind": "authoring_manifest",
|
|
8868
|
+
"content": "{\"operationId\":\"item.avatar.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure item avatar Effects: merge-object. Use photoUrl as the item avatar.\",\"scope\":\"itemTemplate\",\"target\":{\"kind\":\"avatar\",\"resolver\":\"templating-leading\",\"required\":false},\"inputContract\":{\"required\":[\"type\"],\"properties\":[],\"semanticTerms\":[]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating.leading\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-avatar-image\",\"request\":\"Use photoUrl as the item avatar.\",\"operationId\":\"item.avatar.configure\",\"params\":{\"type\":\"image\",\"expr\":\"${item.photoUrl}\",\"imageAlt\":\"Employee photo\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8869
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8870
|
+
"contentHash": "c3b7b653dcd16835263feed0635e84b924785ae1d612c3fb446faf79ab86471e",
|
|
6681
8871
|
"sourceKind": "component_definition",
|
|
6682
8872
|
"sourceId": "praxis-list",
|
|
6683
8873
|
"corpusVersion": "1.0.0"
|
|
6684
8874
|
},
|
|
6685
8875
|
{
|
|
6686
|
-
"chunkIndex":
|
|
6687
|
-
"chunkKind": "
|
|
6688
|
-
"content": "
|
|
6689
|
-
"sourcePointer": "projects/praxis-list/src/lib/ai/list-
|
|
6690
|
-
"contentHash": "
|
|
8876
|
+
"chunkIndex": 9,
|
|
8877
|
+
"chunkKind": "authoring_manifest",
|
|
8878
|
+
"content": "{\"operationId\":\"item.badge.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure item badge Effects: merge-object, set-value, merge-object, merge-object. Show a status badge in the item corner.\",\"scope\":\"itemTemplate\",\"target\":{\"kind\":\"badge\",\"resolver\":\"templating-trailing-chip\",\"required\":false},\"inputContract\":{\"required\":[\"expr\"],\"properties\":[\"expr\",\"color\",\"variant\",\"statusPosition\",\"labelMap\",\"colorMap\"],\"semanticTerms\":[\"expr\",\"color\",\"variant\",\"statusPosition\",\"labelMap\",\"colorMap\",\"filled\",\"outlined\",\"inline\",\"top-right\"]},\"effects\":[\"merge-object\",\"set-value\",\"merge-object\",\"merge-object\"],\"affectedPaths\":[\"templating.trailing\",\"templating.statusPosition\",\"templating.chipLabelMap\",\"templating.chipColorMap\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-badge-from-status\",\"request\":\"Show a status badge in the item corner.\",\"operationId\":\"item.badge.configure\",\"params\":{\"expr\":\"${item.status}\",\"statusPosition\":\"top-right\",\"color\":\"primary\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8879
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8880
|
+
"contentHash": "9dccd99e4353e994ca6aab0d7db6f396c3e61799f3c8515b674893727f11031a",
|
|
6691
8881
|
"sourceKind": "component_definition",
|
|
6692
8882
|
"sourceId": "praxis-list",
|
|
6693
8883
|
"corpusVersion": "1.0.0"
|
|
6694
8884
|
},
|
|
6695
8885
|
{
|
|
6696
|
-
"chunkIndex":
|
|
6697
|
-
"chunkKind": "
|
|
6698
|
-
"content": "
|
|
6699
|
-
"sourcePointer": "projects/praxis-list/src/lib/ai/list-
|
|
6700
|
-
"contentHash": "
|
|
8886
|
+
"chunkIndex": 10,
|
|
8887
|
+
"chunkKind": "authoring_manifest",
|
|
8888
|
+
"content": "{\"operationId\":\"template.slot.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set any list template slot Effects: compile-domain-patch. Set the meta slot to show the employee score.\",\"scope\":\"templating\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"list-template-slot\",\"required\":true},\"inputContract\":{\"required\":[\"slot\",\"template\"],\"properties\":[\"slot\",\"template\"],\"semanticTerms\":[\"slot\",\"template\",\"leading\",\"primary\",\"secondary\",\"meta\",\"trailing\",\"identity\",\"balance\",\"limit\",\"risk\",\"alerts\",\"owner\",\"sectionHeader\",\"emptyState\",\"template.type\",\"template.expr\",\"template.class\",\"template.style\",\"template.color\",\"template.variant\",\"template.imageAlt\",\"template.props\",\"template.badge\",\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"metric\",\"compose\",\"component\",\"filled\",\"outlined\",\"template.props.rating\",\"template.props.metric\",\"template.props.compose\",\"template.props.component\",\"template.badge.expr\",\"template.badge.color\",\"template.badge.variant\",\"template.props.rating.max\",\"template.props.rating.size\",\"template.props.rating.color\",\"template.props.metric.label\",\"template.props.metric.valueExpr\",\"template.props.metric.caption\",\"template.props.metric.subcaption\",\"template.props.metric.captionPosition\",\"template.props.metric.icon\",\"template.props.metric.iconExpr\",\"template.props.metric.tone\",\"template.props.metric.toneExpr\",\"template.props.metric.layout\",\"template.props.metric.align\",\"template.props.metric.progress\",\"template.props.metric.valueClass\",\"template.props.metric.valueStyle\",\"template.props.metric.showBar\",\"template.props.metric.barValueExpr\",\"template.props.metric.barColor\",\"template.props.metric.barVariant\",\"template.props.metric.legendExpr\",\"template.props.metric.iconPosition\",\"template.props.metric.iconColorExpr\",\"template.props.compose.items\",\"template.props.compose.nodes\",\"template.props.compose.direction\",\"template.props.compose.orientation\",\"template.props.compose.align\",\"template.props.compose.gap\",\"template.props.compose.wrap\",\"template.props.compose.separator\",\"template.props.compose.class\",\"template.props.compose.style\",\"template.props.component.id\",\"template.props.component.inputs\"]},\"effects\":[\"compile-domain-patch\"],\"affectedPaths\":[\"templating.leading\",\"templating.primary\",\"templating.secondary\",\"templating.meta\",\"templating.trailing\",\"templating.identity\",\"templating.balance\",\"templating.limit\",\"templating.risk\",\"templating.alerts\",\"templating.owner\",\"templating.sectionHeader\",\"templating.emptyState\"],\"validators\":[{\"validatorId\":\"template-slot-supported\",\"level\":\"error\",\"code\":\"PL013\",\"description\":\"Template slot names must be one of the runtime-supported catalog slots.\"},{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-template-slot\",\"request\":\"Set the meta slot to show the employee score.\",\"operationId\":\"template.slot.set\",\"params\":{\"slot\":\"meta\",\"template\":{\"type\":\"metric\",\"expr\":\"${item.score}\"}},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8889
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8890
|
+
"contentHash": "1ecec9159941d41bb286359057b49717ff89edbaa09f8334b3b68d48c89f2f38",
|
|
6701
8891
|
"sourceKind": "component_definition",
|
|
6702
8892
|
"sourceId": "praxis-list",
|
|
6703
8893
|
"corpusVersion": "1.0.0"
|
|
6704
8894
|
},
|
|
6705
8895
|
{
|
|
6706
|
-
"chunkIndex":
|
|
6707
|
-
"chunkKind": "
|
|
6708
|
-
"content": "
|
|
6709
|
-
"sourcePointer": "projects/praxis-list/src/lib/ai/list-
|
|
6710
|
-
"contentHash": "
|
|
8896
|
+
"chunkIndex": 11,
|
|
8897
|
+
"chunkKind": "authoring_manifest",
|
|
8898
|
+
"content": "{\"operationId\":\"item.action.add\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Add item action Effects: append-unique. Add an edit action to every item. Add an item action that opens the guide route with the selected employee id.\",\"scope\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"required\":false},\"inputContract\":{\"required\":[\"id\",\"label\"],\"properties\":[\"id\",\"label\",\"icon\",\"color\",\"kind\",\"buttonVariant\",\"showIf\",\"globalAction\",\"emitLocal\",\"showLoading\",\"placement\",\"confirmation\"],\"semanticTerms\":[\"id\",\"label\",\"icon\",\"color\",\"kind\",\"buttonVariant\",\"showIf\",\"globalAction\",\"emitLocal\",\"showLoading\",\"placement\",\"confirmation\",\"button\",\"stroked\",\"raised\",\"flat\",\"globalAction.actionId\",\"globalAction.payload\",\"globalAction.payloadExpr\",\"globalAction.meta\",\"actions\",\"trailing\",\"confirmation.title\",\"confirmation.message\",\"confirmation.type\",\"danger\",\"warning\",\"info\"]},\"effects\":[\"append-unique\"],\"affectedPaths\":[\"actions[]\"],\"validators\":[{\"validatorId\":\"action-id-stable\",\"level\":\"error\",\"code\":\"PL003\",\"description\":\"Item actions must declare stable unique ids.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"global-action-ref-valid\",\"level\":\"warning\",\"code\":\"PL011\",\"description\":\"Structured globalAction refs must use a registered action id when registry context is available.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"add-item-action\",\"request\":\"Add an edit action to every item.\",\"operationId\":\"item.action.add\",\"params\":{\"id\":\"edit\",\"label\":\"Edit\",\"icon\":\"edit\",\"kind\":\"icon\"},\"isPositive\":true},{\"id\":\"add-navigation-open-route-action\",\"request\":\"Add an item action that opens the guide route with the selected employee id.\",\"operationId\":\"item.action.add\",\"params\":{\"id\":\"open-guide-route\",\"label\":\"Abrir Guia\",\"icon\":\"travel_explore\",\"kind\":\"button\",\"buttonVariant\":\"stroked\",\"globalAction\":{\"actionId\":\"navigation.openRoute\",\"payload\":{\"path\":\"/components-showcase/surface-open-guide\",\"query\":{\"funcionarioId\":\"${item.id}\"},\"state\":{\"funcionarioId\":\"${item.id}\",\"source\":\"surface-open-list-demo\"}}},\"emitLocal\":false,\"showLoading\":true},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8899
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8900
|
+
"contentHash": "e37be6b5aa13392f600f878ddd17619939e728e0d6d98db15e235ec0308c4553",
|
|
6711
8901
|
"sourceKind": "component_definition",
|
|
6712
8902
|
"sourceId": "praxis-list",
|
|
6713
8903
|
"corpusVersion": "1.0.0"
|
|
6714
8904
|
},
|
|
6715
8905
|
{
|
|
6716
|
-
"chunkIndex":
|
|
8906
|
+
"chunkIndex": 12,
|
|
8907
|
+
"chunkKind": "authoring_manifest",
|
|
8908
|
+
"content": "{\"operationId\":\"item.action.update\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Update item action Effects: merge-by-key. Move the edit action into the dedicated actions column and show loading.\",\"scope\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"required\":true},\"inputContract\":{\"required\":[\"id\"],\"properties\":[],\"semanticTerms\":[]},\"effects\":[\"merge-by-key\"],\"affectedPaths\":[\"actions\",\"actions[].id\",\"actions[].icon\",\"actions[].label\",\"actions[].color\",\"actions[].kind\",\"actions[].buttonVariant\",\"actions[].showIf\",\"actions[].globalAction.[actionId]\",\"actions[].globalAction.payload\",\"actions[].globalAction.payloadExpr\",\"actions[].emitLocal\",\"actions[].showLoading\",\"actions[].placement\",\"actions[].confirmation\",\"actions[].confirmation.title\",\"actions[].confirmation.message\",\"actions[].confirmation.type\"],\"validators\":[{\"validatorId\":\"action-exists\",\"level\":\"error\",\"code\":\"PL004\",\"description\":\"Target action id must exist before update or removal.\"},{\"validatorId\":\"action-id-stable\",\"level\":\"error\",\"code\":\"PL003\",\"description\":\"Item actions must declare stable unique ids.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"global-action-ref-valid\",\"level\":\"warning\",\"code\":\"PL011\",\"description\":\"Structured globalAction refs must use a registered action id when registry context is available.\"},{\"validatorId\":\"declared-only-runtime-warning\",\"level\":\"warning\",\"code\":\"PL023\",\"description\":\"Fields documented as declared-only may round-trip through config/editor without changing current runtime behavior.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\",\"target-exists\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"update-item-action-placement\",\"request\":\"Move the edit action into the dedicated actions column and show loading.\",\"operationId\":\"item.action.update\",\"params\":{\"id\":\"edit\",\"placement\":\"actions\",\"showLoading\":true},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8909
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8910
|
+
"contentHash": "d81956cdd31b346ea0337caca71568b499f06b256ead46fbc5ae673586e92b63",
|
|
8911
|
+
"sourceKind": "component_definition",
|
|
8912
|
+
"sourceId": "praxis-list",
|
|
8913
|
+
"corpusVersion": "1.0.0"
|
|
8914
|
+
},
|
|
8915
|
+
{
|
|
8916
|
+
"chunkIndex": 13,
|
|
8917
|
+
"chunkKind": "authoring_manifest",
|
|
8918
|
+
"content": "{\"operationId\":\"item.action.remove\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Remove item action Effects: remove-by-key. Remove the edit action after confirmation.\",\"scope\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"required\":true},\"inputContract\":{\"required\":[\"id\"],\"properties\":[\"id\"],\"semanticTerms\":[\"id\"]},\"effects\":[\"remove-by-key\"],\"affectedPaths\":[\"actions[]\"],\"validators\":[{\"validatorId\":\"action-exists\",\"level\":\"error\",\"code\":\"PL004\",\"description\":\"Target action id must exist before update or removal.\"},{\"validatorId\":\"destructive-removal-confirmation\",\"level\":\"error\",\"code\":\"PL005\",\"description\":\"Destructive action removal requires explicit confirmation.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\",\"target-exists\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"remove-item-action-with-confirmation\",\"request\":\"Remove the edit action after confirmation.\",\"operationId\":\"item.action.remove\",\"params\":{\"id\":\"edit\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8919
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8920
|
+
"contentHash": "c307734a4b693c622a12055de2c5c120d02d8a1c15afe20e9b95fb8335fdfa6a",
|
|
8921
|
+
"sourceKind": "component_definition",
|
|
8922
|
+
"sourceId": "praxis-list",
|
|
8923
|
+
"corpusVersion": "1.0.0"
|
|
8924
|
+
},
|
|
8925
|
+
{
|
|
8926
|
+
"chunkIndex": 14,
|
|
8927
|
+
"chunkKind": "authoring_manifest",
|
|
8928
|
+
"content": "{\"operationId\":\"selection.mode.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set selection mode Effects: merge-object. Allow selecting multiple employees by id.\",\"scope\":\"selection\",\"target\":{\"kind\":\"selection\",\"resolver\":\"selection-config\",\"required\":false},\"inputContract\":{\"required\":[\"mode\"],\"properties\":[\"mode\",\"compareBy\",\"return\",\"formControlName\",\"formControlPath\"],\"semanticTerms\":[\"mode\",\"compareBy\",\"return\",\"formControlName\",\"formControlPath\",\"none\",\"single\",\"multiple\",\"value\",\"item\",\"id\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"selection\",\"selection.mode\",\"selection.formControlName\",\"selection.formControlPath\",\"selection.compareBy\",\"selection.return\"],\"validators\":[{\"validatorId\":\"selection-mode-supported\",\"level\":\"error\",\"code\":\"PL008\",\"description\":\"Selection mode and return policy must match the runtime enum.\"},{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"affects-submission\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"switch-selection-mode\",\"request\":\"Allow selecting multiple employees by id.\",\"operationId\":\"selection.mode.set\",\"params\":{\"mode\":\"multiple\",\"compareBy\":\"id\",\"return\":\"id\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8929
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8930
|
+
"contentHash": "a3f2903169bae1e26c298689c22965ef4385e5aaf02ca2e60231d17344c07817",
|
|
8931
|
+
"sourceKind": "component_definition",
|
|
8932
|
+
"sourceId": "praxis-list",
|
|
8933
|
+
"corpusVersion": "1.0.0"
|
|
8934
|
+
},
|
|
8935
|
+
{
|
|
8936
|
+
"chunkIndex": 15,
|
|
8937
|
+
"chunkKind": "authoring_manifest",
|
|
8938
|
+
"content": "{\"operationId\":\"interaction.expansion.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure expandable row interaction Effects: merge-object. Allow expanding one row at a time using the expand icon.\",\"scope\":\"interaction\",\"target\":{\"kind\":\"interaction\",\"resolver\":\"interaction-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"expandable\",\"expandTrigger\",\"expandMode\",\"expandPlacement\"],\"semanticTerms\":[\"expandable\",\"expandTrigger\",\"expandMode\",\"expandPlacement\",\"row\",\"icon\",\"row+icon\",\"single\",\"multiple\",\"expand\",\"trailing\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"interaction\",\"interaction.expandable\",\"interaction.expandTrigger\",\"interaction.expandMode\",\"interaction.expandPlacement\"],\"validators\":[{\"validatorId\":\"interaction-value-supported\",\"level\":\"error\",\"code\":\"PL026\",\"description\":\"Interaction expansion values must match the runtime enum contract.\"},{\"validatorId\":\"row-layout-placement-reachable\",\"level\":\"warning\",\"code\":\"PL025\",\"description\":\"Action and expansion placements must be reachable from the active row layout.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"enable-inline-expansion\",\"request\":\"Allow expanding one row at a time using the expand icon.\",\"operationId\":\"interaction.expansion.configure\",\"params\":{\"expandable\":true,\"expandTrigger\":\"icon\",\"expandMode\":\"single\",\"expandPlacement\":\"expand\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8939
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8940
|
+
"contentHash": "57bffb875c4d72ae78f0ca044e9f0edd80c04377c335f41e6ab3518b717fb774",
|
|
8941
|
+
"sourceKind": "component_definition",
|
|
8942
|
+
"sourceId": "praxis-list",
|
|
8943
|
+
"corpusVersion": "1.0.0"
|
|
8944
|
+
},
|
|
8945
|
+
{
|
|
8946
|
+
"chunkIndex": 16,
|
|
8947
|
+
"chunkKind": "authoring_manifest",
|
|
8948
|
+
"content": "{\"operationId\":\"layout.density.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set list density Effects: merge-object. Make the list compact.\",\"scope\":\"layout\",\"target\":{\"kind\":\"layout\",\"resolver\":\"layout-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"density\",\"variant\",\"itemSpacing\",\"lines\",\"dividers\",\"model\",\"groupBy\",\"stickySectionHeader\",\"virtualScroll\",\"pageSize\"],\"semanticTerms\":[\"density\",\"variant\",\"itemSpacing\",\"lines\",\"dividers\",\"model\",\"groupBy\",\"stickySectionHeader\",\"virtualScroll\",\"pageSize\",\"default\",\"comfortable\",\"compact\",\"list\",\"cards\",\"tiles\",\"none\",\"tight\",\"relaxed\",\"1\",\"2\",\"3\",\"between\",\"all\",\"standard\",\"media\",\"hotel\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"layout\",\"layout.variant\",\"layout.density\",\"layout.itemSpacing\",\"layout.lines\",\"layout.dividers\",\"layout.model\",\"layout.groupBy\",\"layout.stickySectionHeader\",\"layout.virtualScroll\",\"layout.pageSize\"],\"validators\":[{\"validatorId\":\"layout-value-supported\",\"level\":\"error\",\"code\":\"PL009\",\"description\":\"Layout density and related enum values must match PraxisListConfig.\"},{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"declared-only-runtime-warning\",\"level\":\"warning\",\"code\":\"PL023\",\"description\":\"Fields documented as declared-only may round-trip through config/editor without changing current runtime behavior.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-compact-density\",\"request\":\"Make the list compact.\",\"operationId\":\"layout.density.set\",\"params\":{\"density\":\"compact\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8949
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8950
|
+
"contentHash": "027bc346e883a0aded65ce7cb1955efd48084c2622202e7573c47f0b2853f45c",
|
|
8951
|
+
"sourceKind": "component_definition",
|
|
8952
|
+
"sourceId": "praxis-list",
|
|
8953
|
+
"corpusVersion": "1.0.0"
|
|
8954
|
+
},
|
|
8955
|
+
{
|
|
8956
|
+
"chunkIndex": 17,
|
|
8957
|
+
"chunkKind": "authoring_manifest",
|
|
8958
|
+
"content": "{\"operationId\":\"layout.rowLayout.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list row layout Effects: merge-object. Use an executive row with identity, balance and actions columns.\",\"scope\":\"rowLayout\",\"target\":{\"kind\":\"rowLayout\",\"resolver\":\"row-layout-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"type\",\"columns\",\"gap\",\"align\",\"itemAlignY\",\"class\",\"style\"],\"semanticTerms\":[\"type\",\"columns\",\"gap\",\"align\",\"itemAlignY\",\"class\",\"style\",\"grid\",\"flex\",\"start\",\"center\",\"end\",\"stretch\",\"columns.slot\",\"columns.width\",\"columns.minWidth\",\"columns.maxWidth\",\"columns.align\",\"columns.justify\",\"columns.class\",\"columns.style\",\"actions\",\"expand\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"layout.rowLayout\",\"layout.rowLayout.type\",\"layout.rowLayout.columns\",\"layout.rowLayout.columns[].slot\",\"layout.rowLayout.columns[].width\",\"layout.rowLayout.columns[].minWidth\",\"layout.rowLayout.columns[].maxWidth\",\"layout.rowLayout.columns[].align\",\"layout.rowLayout.columns[].justify\",\"layout.rowLayout.columns[].class\",\"layout.rowLayout.columns[].style\",\"layout.rowLayout.gap\",\"layout.rowLayout.align\",\"layout.rowLayout.itemAlignY\",\"layout.rowLayout.class\",\"layout.rowLayout.style\"],\"validators\":[{\"validatorId\":\"row-layout-supported\",\"level\":\"error\",\"code\":\"PL024\",\"description\":\"Row layout columns must use supported slots and enum values.\"},{\"validatorId\":\"row-layout-placement-reachable\",\"level\":\"warning\",\"code\":\"PL025\",\"description\":\"Action and expansion placements must be reachable from the active row layout.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-row-layout-executive-slots\",\"request\":\"Use an executive row with identity, balance and actions columns.\",\"operationId\":\"layout.rowLayout.configure\",\"params\":{\"type\":\"grid\",\"columns\":[{\"slot\":\"identity\",\"width\":\"280px\"},{\"slot\":\"balance\",\"width\":\"1fr\"},{\"slot\":\"actions\",\"width\":\"auto\"}]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8959
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8960
|
+
"contentHash": "b8a6deb632355c07578006addcd9f9e7f0085844057e60b5428d75d0d95c4463",
|
|
8961
|
+
"sourceKind": "component_definition",
|
|
8962
|
+
"sourceId": "praxis-list",
|
|
8963
|
+
"corpusVersion": "1.0.0"
|
|
8964
|
+
},
|
|
8965
|
+
{
|
|
8966
|
+
"chunkIndex": 18,
|
|
8967
|
+
"chunkKind": "authoring_manifest",
|
|
8968
|
+
"content": "{\"operationId\":\"skin.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list skin Effects: merge-object. Use an elevated card skin with rounded corners.\",\"scope\":\"skin\",\"target\":{\"kind\":\"skin\",\"resolver\":\"skin-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"type\",\"gradient\",\"radius\",\"shadow\",\"border\",\"backdropBlur\",\"class\",\"inlineStyle\"],\"semanticTerms\":[\"type\",\"gradient\",\"radius\",\"shadow\",\"border\",\"backdropBlur\",\"class\",\"inlineStyle\",\"pill-soft\",\"gradient-tile\",\"glass\",\"elevated\",\"outline\",\"flat\",\"neumorphism\",\"custom\",\"gradient.from\",\"gradient.to\",\"gradient.angle\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"skin\",\"skin.type\",\"skin.gradient\",\"skin.gradient.from\",\"skin.gradient.to\",\"skin.gradient.angle\",\"skin.radius\",\"skin.shadow\",\"skin.border\",\"skin.backdropBlur\",\"skin.class\",\"skin.inlineStyle\"],\"validators\":[{\"validatorId\":\"skin-value-supported\",\"level\":\"error\",\"code\":\"PL014\",\"description\":\"Skin values must match the runtime-supported skin contract.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-list-skin\",\"request\":\"Use an elevated card skin with rounded corners.\",\"operationId\":\"skin.configure\",\"params\":{\"type\":\"elevated\",\"radius\":\"8px\",\"shadow\":\"var(--mat-sys-level2)\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8969
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8970
|
+
"contentHash": "4356ea44fe87b5994d67b6bd3f6122f304089f8e5d5f5093d9b41df35fbcc0a4",
|
|
8971
|
+
"sourceKind": "component_definition",
|
|
8972
|
+
"sourceId": "praxis-list",
|
|
8973
|
+
"corpusVersion": "1.0.0"
|
|
8974
|
+
},
|
|
8975
|
+
{
|
|
8976
|
+
"chunkIndex": 19,
|
|
8977
|
+
"chunkKind": "authoring_manifest",
|
|
8978
|
+
"content": "{\"operationId\":\"templating.display.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list template display options Effects: merge-object. Move status chips to the top right and hide feature labels.\",\"scope\":\"templating\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-display-options\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"metaPlacement\",\"metaPrefixIcon\",\"statusPosition\",\"chipColorMap\",\"chipLabelMap\",\"iconColorMap\",\"featuresVisible\",\"featuresMode\"],\"semanticTerms\":[\"metaPlacement\",\"metaPrefixIcon\",\"statusPosition\",\"chipColorMap\",\"chipLabelMap\",\"iconColorMap\",\"featuresVisible\",\"featuresMode\",\"side\",\"line\",\"inline\",\"top-right\",\"icons+labels\",\"icons-only\",\"labels-only\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating\",\"templating.metaPlacement\",\"templating.metaPrefixIcon\",\"templating.statusPosition\",\"templating.chipColorMap\",\"templating.chipLabelMap\",\"templating.iconColorMap\",\"templating.featuresVisible\",\"templating.featuresMode\"],\"validators\":[{\"validatorId\":\"template-display-supported\",\"level\":\"error\",\"code\":\"PL016\",\"description\":\"Template display options must match the runtime enum contract.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-template-display\",\"request\":\"Move status chips to the top right and hide feature labels.\",\"operationId\":\"templating.display.configure\",\"params\":{\"statusPosition\":\"top-right\",\"featuresMode\":\"icons-only\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8979
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8980
|
+
"contentHash": "5537b4d2f7f5b40f166ab53e3919e85c2fbb16d2255eb5c5998d8440062aa15e",
|
|
8981
|
+
"sourceKind": "component_definition",
|
|
8982
|
+
"sourceId": "praxis-list",
|
|
8983
|
+
"corpusVersion": "1.0.0"
|
|
8984
|
+
},
|
|
8985
|
+
{
|
|
8986
|
+
"chunkIndex": 20,
|
|
8987
|
+
"chunkKind": "authoring_manifest",
|
|
8988
|
+
"content": "{\"operationId\":\"templating.features.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set list feature line Effects: set-value. Show the amenities feature line.\",\"scope\":\"templating\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-features\",\"required\":false},\"inputContract\":{\"required\":[\"features\"],\"properties\":[\"features\"],\"semanticTerms\":[\"features\",\"features.icon\",\"features.expr\",\"features.class\",\"features.style\"]},\"effects\":[\"set-value\"],\"affectedPaths\":[\"templating.features\",\"templating.features[].icon\",\"templating.features[].expr\",\"templating.features[].class\",\"templating.features[].style\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-feature-line\",\"request\":\"Show the amenities feature line.\",\"operationId\":\"templating.features.set\",\"params\":{\"features\":[{\"icon\":\"wifi\",\"expr\":\"${item.hasWifi}\"}]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8989
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
8990
|
+
"contentHash": "9cce2d7b4dc7677478431ee3ae068e4a040aee0c84695592911f44cf3e989ad4",
|
|
8991
|
+
"sourceKind": "component_definition",
|
|
8992
|
+
"sourceId": "praxis-list",
|
|
8993
|
+
"corpusVersion": "1.0.0"
|
|
8994
|
+
},
|
|
8995
|
+
{
|
|
8996
|
+
"chunkIndex": 21,
|
|
8997
|
+
"chunkKind": "authoring_manifest",
|
|
8998
|
+
"content": "{\"operationId\":\"templating.skeleton.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list skeleton Effects: merge-object. Render six skeleton rows while loading.\",\"scope\":\"templating\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-skeleton\",\"required\":false},\"inputContract\":{\"required\":[\"count\"],\"properties\":[\"count\"],\"semanticTerms\":[\"count\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating.skeleton\",\"templating.skeleton.count\"],\"validators\":[{\"validatorId\":\"skeleton-value-supported\",\"level\":\"error\",\"code\":\"PL017\",\"description\":\"Skeleton counts must be numeric and non-negative.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-skeleton-count\",\"request\":\"Render six skeleton rows while loading.\",\"operationId\":\"templating.skeleton.configure\",\"params\":{\"count\":6},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
8999
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9000
|
+
"contentHash": "711ea95a6ab7d5f5f9f15ee1b19fb6d59dbd1a7e3462e916adb449c21c4f8c08",
|
|
9001
|
+
"sourceKind": "component_definition",
|
|
9002
|
+
"sourceId": "praxis-list",
|
|
9003
|
+
"corpusVersion": "1.0.0"
|
|
9004
|
+
},
|
|
9005
|
+
{
|
|
9006
|
+
"chunkIndex": 22,
|
|
9007
|
+
"chunkKind": "authoring_manifest",
|
|
9008
|
+
"content": "{\"operationId\":\"rules.itemStyle.upsert\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Upsert item style rule Effects: merge-by-key. Highlight rows where risk is high.\",\"scope\":\"rules\",\"target\":{\"kind\":\"rules\",\"resolver\":\"rules-config\",\"required\":false},\"inputContract\":{\"required\":[\"id\"],\"properties\":[\"id\",\"condition\",\"class\",\"style\",\"border\",\"background\",\"effects\"],\"semanticTerms\":[\"id\",\"condition\",\"class\",\"style\",\"border\",\"background\",\"effects\",\"effects.kind\",\"effects.class\",\"effects.style\",\"effects.border\",\"effects.background\",\"item-style\"]},\"effects\":[\"merge-by-key\"],\"affectedPaths\":[\"rules\",\"rules.itemStyles\",\"rules.itemStyles[].id\",\"rules.itemStyles[].condition\",\"rules.itemStyles[].class\",\"rules.itemStyles[].style\",\"rules.itemStyles[].border\",\"rules.itemStyles[].background\",\"rules.itemStyles[].effects\",\"rules.itemStyles[].effects[].kind\"],\"validators\":[{\"validatorId\":\"rule-id-stable\",\"level\":\"error\",\"code\":\"PL027\",\"description\":\"List style and slot override rules must declare stable unique ids.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"style-high-risk-items\",\"request\":\"Highlight rows where risk is high.\",\"operationId\":\"rules.itemStyle.upsert\",\"params\":{\"id\":\"high-risk\",\"condition\":{\"==\":[{\"var\":\"row.risk\"},\"high\"]},\"class\":\"risk-high\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9009
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9010
|
+
"contentHash": "d5f58cf9617e347adf2b4eb650bae053a06ed9425f7be5f105d860d1da910899",
|
|
9011
|
+
"sourceKind": "component_definition",
|
|
9012
|
+
"sourceId": "praxis-list",
|
|
9013
|
+
"corpusVersion": "1.0.0"
|
|
9014
|
+
},
|
|
9015
|
+
{
|
|
9016
|
+
"chunkIndex": 23,
|
|
9017
|
+
"chunkKind": "authoring_manifest",
|
|
9018
|
+
"content": "{\"operationId\":\"rules.slotOverride.upsert\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Upsert slot override rule Effects: merge-by-key. Show a warning icon in the risk slot for high-risk rows.\",\"scope\":\"rules\",\"target\":{\"kind\":\"rules\",\"resolver\":\"rules-config\",\"required\":false},\"inputContract\":{\"required\":[\"id\",\"slot\"],\"properties\":[\"id\",\"slot\",\"condition\",\"template\",\"class\",\"style\",\"hide\",\"effects\"],\"semanticTerms\":[\"id\",\"slot\",\"condition\",\"template\",\"class\",\"style\",\"hide\",\"effects\",\"template.type\",\"template.expr\",\"template.class\",\"template.style\",\"template.color\",\"template.variant\",\"template.imageAlt\",\"template.props\",\"template.badge\",\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"metric\",\"compose\",\"component\",\"filled\",\"outlined\",\"template.props.rating\",\"template.props.metric\",\"template.props.compose\",\"template.props.component\",\"template.badge.expr\",\"template.badge.color\",\"template.badge.variant\",\"effects.kind\",\"effects.template\",\"effects.class\",\"effects.style\",\"effects.hide\",\"template.props.rating.max\",\"template.props.rating.size\",\"template.props.rating.color\",\"template.props.metric.label\",\"template.props.metric.valueExpr\",\"template.props.metric.caption\",\"template.props.metric.subcaption\",\"template.props.metric.captionPosition\",\"template.props.metric.icon\",\"template.props.metric.iconExpr\",\"template.props.metric.tone\",\"template.props.metric.toneExpr\",\"template.props.metric.layout\",\"template.props.metric.align\",\"template.props.metric.progress\",\"template.props.metric.valueClass\",\"template.props.metric.valueStyle\",\"template.props.metric.showBar\",\"template.props.metric.barValueExpr\",\"template.props.metric.barColor\",\"template.props.metric.barVariant\",\"template.props.metric.legendExpr\",\"template.props.metric.iconPosition\",\"template.props.metric.iconColorExpr\",\"template.props.compose.items\",\"template.props.compose.nodes\",\"template.props.compose.direction\",\"template.props.compose.orientation\",\"template.props.compose.align\",\"template.props.compose.gap\",\"template.props.compose.wrap\",\"template.props.compose.separator\",\"template.props.compose.class\",\"template.props.compose.style\",\"template.props.component.id\",\"template.props.component.inputs\",\"template.props.component.class\",\"template.props.component.style\"]},\"effects\":[\"merge-by-key\"],\"affectedPaths\":[\"rules\",\"rules.slotOverrides\",\"rules.slotOverrides[].id\",\"rules.slotOverrides[].slot\",\"rules.slotOverrides[].condition\",\"rules.slotOverrides[].template\",\"rules.slotOverrides[].class\",\"rules.slotOverrides[].style\",\"rules.slotOverrides[].hide\",\"rules.slotOverrides[].effects\",\"rules.slotOverrides[].effects[].kind\"],\"validators\":[{\"validatorId\":\"rule-id-stable\",\"level\":\"error\",\"code\":\"PL027\",\"description\":\"List style and slot override rules must declare stable unique ids.\"},{\"validatorId\":\"template-slot-supported\",\"level\":\"error\",\"code\":\"PL013\",\"description\":\"Template slot names must be one of the runtime-supported catalog slots.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"override-risk-slot\",\"request\":\"Show a warning icon in the risk slot for high-risk rows.\",\"operationId\":\"rules.slotOverride.upsert\",\"params\":{\"id\":\"high-risk-icon\",\"slot\":\"risk\",\"condition\":{\"==\":[{\"var\":\"row.risk\"},\"high\"]},\"template\":{\"type\":\"icon\",\"expr\":\"warning\",\"color\":\"warn\"}},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9019
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9020
|
+
"contentHash": "6b5492ba3fa28ab68c36b6cf164a48162fa9f697fcd32dd24719150772bfb8d2",
|
|
9021
|
+
"sourceKind": "component_definition",
|
|
9022
|
+
"sourceId": "praxis-list",
|
|
9023
|
+
"corpusVersion": "1.0.0"
|
|
9024
|
+
},
|
|
9025
|
+
{
|
|
9026
|
+
"chunkIndex": 24,
|
|
9027
|
+
"chunkKind": "authoring_manifest",
|
|
9028
|
+
"content": "{\"operationId\":\"emptyState.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set empty state Effects: merge-object. Show an empty employee message.\",\"scope\":\"itemTemplate\",\"target\":{\"kind\":\"emptyState\",\"resolver\":\"templating-empty-state\",\"required\":false},\"inputContract\":{\"required\":[\"type\",\"expr\"],\"properties\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\"],\"semanticTerms\":[\"type\",\"expr\",\"class\",\"style\",\"color\",\"variant\",\"imageAlt\",\"props\",\"badge\",\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\",\"filled\",\"outlined\",\"props.rating\",\"props.metric\",\"props.compose\",\"props.component\",\"badge.expr\",\"badge.color\",\"badge.variant\",\"props.rating.max\",\"props.rating.size\",\"props.rating.color\",\"props.metric.label\",\"props.metric.valueExpr\",\"props.metric.caption\",\"props.metric.subcaption\",\"props.metric.captionPosition\",\"props.metric.icon\",\"props.metric.iconExpr\",\"props.metric.tone\",\"props.metric.toneExpr\",\"props.metric.layout\",\"props.metric.align\",\"props.metric.progress\",\"props.metric.valueClass\",\"props.metric.valueStyle\",\"props.metric.showBar\",\"props.metric.barValueExpr\",\"props.metric.barColor\",\"props.metric.barVariant\",\"props.metric.legendExpr\",\"props.metric.iconPosition\",\"props.metric.iconColorExpr\",\"props.compose.items\",\"props.compose.nodes\",\"props.compose.direction\",\"props.compose.orientation\",\"props.compose.align\",\"props.compose.gap\",\"props.compose.wrap\",\"props.compose.separator\",\"props.compose.class\",\"props.compose.style\",\"props.component.id\",\"props.component.inputs\",\"props.component.class\",\"props.component.style\",\"below-value\",\"below-progress\",\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\",\"start\",\"center\",\"end\",\"props.metric.progress.valueExpr\",\"props.metric.progress.max\",\"props.metric.progress.mode\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"templating.emptyState\"],\"validators\":[{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-empty-state\",\"request\":\"Show an empty employee message.\",\"operationId\":\"emptyState.set\",\"params\":{\"type\":\"text\",\"expr\":\"No employees found\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9029
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9030
|
+
"contentHash": "c619c5a183af032e17c0898f6776462573414c400a9c467761d7bbd96d1be4e7",
|
|
9031
|
+
"sourceKind": "component_definition",
|
|
9032
|
+
"sourceId": "praxis-list",
|
|
9033
|
+
"corpusVersion": "1.0.0"
|
|
9034
|
+
},
|
|
9035
|
+
{
|
|
9036
|
+
"chunkIndex": 25,
|
|
9037
|
+
"chunkKind": "authoring_manifest",
|
|
9038
|
+
"content": "{\"operationId\":\"expansion.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list expansion Effects: merge-object. Add a detail expansion section backed by item details.\",\"scope\":\"expansion\",\"target\":{\"kind\":\"expansion\",\"resolver\":\"expansion-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"sections\",\"dataSource\",\"schemaContract\",\"rendering\"],\"semanticTerms\":[\"sections\",\"dataSource\",\"schemaContract\",\"rendering\",\"dataSource.mode\",\"dataSource.resource\",\"dataSource.resourcePath\",\"dataSource.resourceAllowList\",\"dataSource.fallbackMode\",\"dataSource.cache\",\"dataSource.cancelOnCollapse\",\"schemaContract.kind\",\"schemaContract.version\",\"schemaContract.allowedNodes\",\"schemaContract.maxSections\",\"schemaContract.maxItemsPerSection\",\"schemaContract.requireSectionIds\",\"rendering.shell\",\"rendering.columns\",\"rendering.gap\",\"rendering.padding\",\"rendering.class\",\"rendering.style\",\"rendering.loadingTemplate\",\"rendering.errorTemplate\",\"sections.id\",\"sections.title\",\"sections.type\",\"sections.itemsExpr\",\"sections.document\",\"sections.documentExpr\",\"sections.emptyLabel\",\"sections.metadata\",\"sections.component\",\"sections.class\",\"sections.style\",\"sections.showIf\",\"inline\",\"resource\",\"resourcePath\",\"dataSource.resource.kind\",\"dataSource.resource.id\",\"dataSource.resource.version\",\"dataSource.resourcePath.path\",\"dataSource.resourcePath.method\",\"dataSource.resourcePath.paramsMap\",\"none\",\"dataSource.cache.enabled\",\"praxis.detail.schema\",\"attached\",\"detached\",\"modal\",\"1\",\"2\",\"3\",\"rendering.loadingTemplate.type\",\"rendering.loadingTemplate.expr\",\"rendering.loadingTemplate.class\",\"rendering.loadingTemplate.style\",\"rendering.loadingTemplate.color\",\"rendering.loadingTemplate.variant\",\"rendering.loadingTemplate.imageAlt\",\"rendering.loadingTemplate.props\",\"rendering.loadingTemplate.badge\",\"rendering.errorTemplate.type\",\"rendering.errorTemplate.expr\",\"rendering.errorTemplate.class\",\"rendering.errorTemplate.style\",\"rendering.errorTemplate.color\",\"rendering.errorTemplate.variant\",\"rendering.errorTemplate.imageAlt\",\"rendering.errorTemplate.props\",\"rendering.errorTemplate.badge\",\"info-list\",\"chip-list\",\"timeline\",\"key-value\",\"metadata\",\"component\",\"rich-content\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"expansion\",\"expansion.sections\",\"expansion.sections[].id\",\"expansion.sections[].title\",\"expansion.sections[].type\",\"expansion.sections[].itemsExpr\",\"expansion.sections[].document\",\"expansion.sections[].documentExpr\",\"expansion.sections[].emptyLabel\",\"expansion.sections[].metadata\",\"expansion.sections[].component\",\"expansion.sections[].class\",\"expansion.sections[].style\",\"expansion.sections[].showIf\",\"expansion.dataSource\",\"expansion.dataSource.mode\",\"expansion.dataSource.resource\",\"expansion.dataSource.resource.kind\",\"expansion.dataSource.resource.id\",\"expansion.dataSource.resource.version\",\"expansion.dataSource.resourcePath\",\"expansion.dataSource.resourcePath.path\",\"expansion.dataSource.resourcePath.method\",\"expansion.dataSource.resourcePath.paramsMap\",\"expansion.dataSource.resourceAllowList\",\"expansion.dataSource.fallbackMode\",\"expansion.dataSource.cache\",\"expansion.dataSource.cache.enabled\",\"expansion.dataSource.cancelOnCollapse\",\"expansion.schemaContract\",\"expansion.schemaContract.kind\",\"expansion.schemaContract.version\",\"expansion.schemaContract.allowedNodes\",\"expansion.schemaContract.maxSections\",\"expansion.schemaContract.maxItemsPerSection\",\"expansion.schemaContract.requireSectionIds\",\"expansion.rendering\",\"expansion.rendering.shell\",\"expansion.rendering.columns\",\"expansion.rendering.gap\",\"expansion.rendering.padding\",\"expansion.rendering.class\",\"expansion.rendering.style\",\"expansion.rendering.loadingTemplate\",\"expansion.rendering.errorTemplate\"],\"validators\":[{\"validatorId\":\"expansion-section-id-stable\",\"level\":\"error\",\"code\":\"PL028\",\"description\":\"Expansion sections must declare stable unique ids.\"},{\"validatorId\":\"expansion-value-supported\",\"level\":\"error\",\"code\":\"PL029\",\"description\":\"Expansion section, data source, schema contract and rendering values must match the runtime contract.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"remote-resource-binding-safe\",\"level\":\"error\",\"code\":\"PL006\",\"description\":\"Remote resource binding must use canonical resource metadata and safe resourcePath values.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"affects-remote-binding\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"add-expansion-section\",\"request\":\"Add a detail expansion section backed by item details.\",\"operationId\":\"expansion.configure\",\"params\":{\"sections\":[{\"id\":\"details\",\"type\":\"metadata\",\"title\":\"Details\",\"itemsExpr\":\"${item.details}\"}]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9039
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9040
|
+
"contentHash": "384d0bbd3360eb787a975bb06c49e11f5c3a1b6d426d6ed047dcb4b6396b0327",
|
|
9041
|
+
"sourceKind": "component_definition",
|
|
9042
|
+
"sourceId": "praxis-list",
|
|
9043
|
+
"corpusVersion": "1.0.0"
|
|
9044
|
+
},
|
|
9045
|
+
{
|
|
9046
|
+
"chunkIndex": 26,
|
|
9047
|
+
"chunkKind": "authoring_manifest",
|
|
9048
|
+
"content": "{\"operationId\":\"data.resource.bind\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Bind remote resource Effects: merge-object. Bind the list to the employees resource.\",\"scope\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"required\":false},\"inputContract\":{\"required\":[\"resourcePath\"],\"properties\":[\"resourcePath\",\"query\",\"sort\",\"clearLocalData\"],\"semanticTerms\":[\"resourcePath\",\"query\",\"sort\",\"clearLocalData\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"dataSource.resourcePath\",\"dataSource.query\",\"dataSource.sort\",\"dataSource.data\"],\"validators\":[{\"validatorId\":\"remote-resource-binding-safe\",\"level\":\"error\",\"code\":\"PL006\",\"description\":\"Remote resource binding must use canonical resource metadata and safe resourcePath values.\"},{\"validatorId\":\"local-remote-precedence-safe\",\"level\":\"warning\",\"code\":\"PL007\",\"description\":\"When binding resourcePath, tools must account for dataSource.data taking precedence over remote data.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"affects-remote-binding\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"bind-remote-resource\",\"request\":\"Bind the list to the employees resource.\",\"operationId\":\"data.resource.bind\",\"params\":{\"resourcePath\":\"employees\",\"sort\":[\"name,asc\"]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9049
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9050
|
+
"contentHash": "818628940077c0f2dbb3216cf4f53a9fca1f84f2a4c879b7fad0f0b23aba78c8",
|
|
9051
|
+
"sourceKind": "component_definition",
|
|
9052
|
+
"sourceId": "praxis-list",
|
|
9053
|
+
"corpusVersion": "1.0.0"
|
|
9054
|
+
},
|
|
9055
|
+
{
|
|
9056
|
+
"chunkIndex": 27,
|
|
9057
|
+
"chunkKind": "authoring_manifest",
|
|
9058
|
+
"content": "{\"operationId\":\"data.local.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set local list data Effects: merge-object. Use a local employee array for the list.\",\"scope\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"required\":false},\"inputContract\":{\"required\":[\"data\"],\"properties\":[\"data\",\"clearResourcePath\"],\"semanticTerms\":[\"data\",\"clearResourcePath\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"dataSource\",\"dataSource.data\",\"dataSource.resourcePath\"],\"validators\":[{\"validatorId\":\"local-data-array-safe\",\"level\":\"error\",\"code\":\"PL018\",\"description\":\"Local list data must be an array and must not hide an intended remote binding accidentally.\"},{\"validatorId\":\"local-remote-precedence-safe\",\"level\":\"warning\",\"code\":\"PL007\",\"description\":\"When binding resourcePath, tools must account for dataSource.data taking precedence over remote data.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-local-data\",\"request\":\"Use a local employee array for the list.\",\"operationId\":\"data.local.set\",\"params\":{\"data\":[{\"id\":1,\"name\":\"Ana\"}]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9059
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9060
|
+
"contentHash": "712c21a42703cb7e3ae40ef7b65bc3ab13eadf89752882e7a9e5e0bdb24d4def",
|
|
9061
|
+
"sourceKind": "component_definition",
|
|
9062
|
+
"sourceId": "praxis-list",
|
|
9063
|
+
"corpusVersion": "1.0.0"
|
|
9064
|
+
},
|
|
9065
|
+
{
|
|
9066
|
+
"chunkIndex": 28,
|
|
9067
|
+
"chunkKind": "authoring_manifest",
|
|
9068
|
+
"content": "{\"operationId\":\"data.query.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set remote list query Effects: set-value. Filter remote employees by active status.\",\"scope\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"required\":false},\"inputContract\":{\"required\":[\"query\"],\"properties\":[\"query\"],\"semanticTerms\":[\"query\"]},\"effects\":[\"set-value\"],\"affectedPaths\":[\"dataSource.query\"],\"validators\":[{\"validatorId\":\"query-value-supported\",\"level\":\"error\",\"code\":\"PL031\",\"description\":\"Remote list query must be a serializable object compatible with the resource filter contract.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-remote-query\",\"request\":\"Filter remote employees by active status.\",\"operationId\":\"data.query.set\",\"params\":{\"query\":{\"status\":\"active\"}},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9069
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9070
|
+
"contentHash": "2cb9c52a1acce3ca50cd538dde2a67957d67fd260f0a83bcc9de6fa2088cd445",
|
|
9071
|
+
"sourceKind": "component_definition",
|
|
9072
|
+
"sourceId": "praxis-list",
|
|
9073
|
+
"corpusVersion": "1.0.0"
|
|
9074
|
+
},
|
|
9075
|
+
{
|
|
9076
|
+
"chunkIndex": 29,
|
|
9077
|
+
"chunkKind": "authoring_manifest",
|
|
9078
|
+
"content": "{\"operationId\":\"data.sort.set\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Set remote list sort Effects: set-value. Sort remote employees by name ascending.\",\"scope\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"required\":false},\"inputContract\":{\"required\":[\"sort\"],\"properties\":[\"sort\"],\"semanticTerms\":[\"sort\"]},\"effects\":[\"set-value\"],\"affectedPaths\":[\"dataSource.sort\",\"dataSource.sort[]\"],\"validators\":[{\"validatorId\":\"sort-entry-supported\",\"level\":\"error\",\"code\":\"PL019\",\"description\":\"Sort entries must use the canonical field,direction format or labeled sort option shape.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"set-remote-sort\",\"request\":\"Sort remote employees by name ascending.\",\"operationId\":\"data.sort.set\",\"params\":{\"sort\":[\"name,asc\"]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9079
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9080
|
+
"contentHash": "385beec193870ed0336cdde01cab56320dad4ae81e94575eb4f6f3d5dcae52b1",
|
|
9081
|
+
"sourceKind": "component_definition",
|
|
9082
|
+
"sourceId": "praxis-list",
|
|
9083
|
+
"corpusVersion": "1.0.0"
|
|
9084
|
+
},
|
|
9085
|
+
{
|
|
9086
|
+
"chunkIndex": 30,
|
|
9087
|
+
"chunkKind": "authoring_manifest",
|
|
9088
|
+
"content": "{\"operationId\":\"export.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list collection export Effects: merge-object. Enable CSV export for selected list rows.\",\"scope\":\"export\",\"target\":{\"kind\":\"export\",\"resolver\":\"export-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"enabled\",\"formats\",\"general\"],\"semanticTerms\":[\"enabled\",\"formats\",\"general\",\"general.scope\",\"general.includeHeaders\",\"general.maxRows\",\"general.defaultFileName\",\"general.includeFields\",\"general.applyFormatting\",\"csv\",\"json\",\"excel\",\"pdf\",\"print\",\"auto\",\"selected\",\"filtered\",\"currentPage\",\"all\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"export\",\"export.enabled\",\"export.formats\",\"export.formats[]\",\"export.general.scope\",\"export.general.includeHeaders\",\"export.general.maxRows\",\"export.general.defaultFileName\",\"export.general.includeFields\",\"export.general.applyFormatting\"],\"validators\":[{\"validatorId\":\"export-value-supported\",\"level\":\"error\",\"code\":\"PL030\",\"description\":\"Export formats and scopes must match the shared collection export contract.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-list-export\",\"request\":\"Enable CSV export for selected list rows.\",\"operationId\":\"export.configure\",\"params\":{\"enabled\":true,\"formats\":[\"csv\"],\"general\":{\"scope\":\"selected\",\"includeFields\":[\"id\",\"name\"]}},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9089
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9090
|
+
"contentHash": "6bcd5267ece8e04c511a8621f6b83ece6ca593c077fd4fd3bec7183094835170",
|
|
9091
|
+
"sourceKind": "component_definition",
|
|
9092
|
+
"sourceId": "praxis-list",
|
|
9093
|
+
"corpusVersion": "1.0.0"
|
|
9094
|
+
},
|
|
9095
|
+
{
|
|
9096
|
+
"chunkIndex": 31,
|
|
9097
|
+
"chunkKind": "authoring_manifest",
|
|
9098
|
+
"content": "{\"operationId\":\"ui.toolbar.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list toolbar UI Effects: merge-object. Show search by name and sort by created date.\",\"scope\":\"toolbarUi\",\"target\":{\"kind\":\"toolbarUi\",\"resolver\":\"ui-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"showSearch\",\"searchField\",\"searchPlaceholder\",\"showSort\",\"sortOptions\",\"showRange\"],\"semanticTerms\":[\"showSearch\",\"searchField\",\"searchPlaceholder\",\"showSort\",\"sortOptions\",\"showRange\",\"sortOptions.label\",\"sortOptions.value\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"ui\",\"ui.showSearch\",\"ui.searchField\",\"ui.searchPlaceholder\",\"ui.showSort\",\"ui.sortOptions\",\"ui.sortOptions[].label\",\"ui.sortOptions[].value\",\"ui.showRange\"],\"validators\":[{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"sort-entry-supported\",\"level\":\"error\",\"code\":\"PL019\",\"description\":\"Sort entries must use the canonical field,direction format or labeled sort option shape.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-list-toolbar\",\"request\":\"Show search by name and sort by created date.\",\"operationId\":\"ui.toolbar.configure\",\"params\":{\"showSearch\":true,\"searchField\":\"name\",\"showSort\":true,\"sortOptions\":[{\"label\":\"Newest\",\"value\":\"createdAt,desc\"}]},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9099
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9100
|
+
"contentHash": "e225ed9da712d34a394f1b912247c0d1246764c230ec19e1c5a221071b9e1f46",
|
|
9101
|
+
"sourceKind": "component_definition",
|
|
9102
|
+
"sourceId": "praxis-list",
|
|
9103
|
+
"corpusVersion": "1.0.0"
|
|
9104
|
+
},
|
|
9105
|
+
{
|
|
9106
|
+
"chunkIndex": 32,
|
|
9107
|
+
"chunkKind": "authoring_manifest",
|
|
9108
|
+
"content": "{\"operationId\":\"i18n.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list localization Effects: merge-object. Use Brazilian Portuguese and BRL defaults.\",\"scope\":\"localization\",\"target\":{\"kind\":\"localization\",\"resolver\":\"i18n-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"locale\",\"currency\",\"localization\"],\"semanticTerms\":[\"locale\",\"currency\",\"localization\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"i18n\",\"i18n.locale\",\"i18n.currency\",\"i18n.localization\"],\"validators\":[{\"validatorId\":\"i18n-value-supported\",\"level\":\"warning\",\"code\":\"PL020\",\"description\":\"Locale and currency values should be valid BCP 47 / ISO currency values when host validation is available.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-list-i18n\",\"request\":\"Use Brazilian Portuguese and BRL defaults.\",\"operationId\":\"i18n.configure\",\"params\":{\"locale\":\"pt-BR\",\"currency\":\"BRL\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9109
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9110
|
+
"contentHash": "4ecf1183dd006cdf77cb062b0071880565793123fde47c3b14e1d30a85059ab2",
|
|
9111
|
+
"sourceKind": "component_definition",
|
|
9112
|
+
"sourceId": "praxis-list",
|
|
9113
|
+
"corpusVersion": "1.0.0"
|
|
9114
|
+
},
|
|
9115
|
+
{
|
|
9116
|
+
"chunkIndex": 33,
|
|
9117
|
+
"chunkKind": "authoring_manifest",
|
|
9118
|
+
"content": "{\"operationId\":\"a11y.configure\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure list accessibility Effects: merge-object. Set an accessible label for the customer list.\",\"scope\":\"accessibility\",\"target\":{\"kind\":\"accessibility\",\"resolver\":\"a11y-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"ariaLabel\",\"ariaLabelledBy\",\"highContrast\",\"reduceMotion\"],\"semanticTerms\":[\"ariaLabel\",\"ariaLabelledBy\",\"highContrast\",\"reduceMotion\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"a11y\",\"a11y.ariaLabel\",\"a11y.ariaLabelledBy\",\"a11y.highContrast\",\"a11y.reduceMotion\"],\"validators\":[{\"validatorId\":\"a11y-value-supported\",\"level\":\"error\",\"code\":\"PL021\",\"description\":\"Accessibility labels must be non-empty when provided.\"},{\"validatorId\":\"declared-only-runtime-warning\",\"level\":\"warning\",\"code\":\"PL023\",\"description\":\"Fields documented as declared-only may round-trip through config/editor without changing current runtime behavior.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"visual-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"configure-accessibility-label\",\"request\":\"Set an accessible label for the customer list.\",\"operationId\":\"a11y.configure\",\"params\":{\"ariaLabel\":\"Customer list\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9119
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9120
|
+
"contentHash": "14889dfb073d96eaf89fc69f4eba28c60fbbb690264228c72b728ae4e08cad72",
|
|
9121
|
+
"sourceKind": "component_definition",
|
|
9122
|
+
"sourceId": "praxis-list",
|
|
9123
|
+
"corpusVersion": "1.0.0"
|
|
9124
|
+
},
|
|
9125
|
+
{
|
|
9126
|
+
"chunkIndex": 34,
|
|
9127
|
+
"chunkKind": "authoring_manifest",
|
|
9128
|
+
"content": "{\"operationId\":\"events.map\",\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operation_card\",\"semanticSummary\":\"Configure declarative event mappings Effects: merge-object. Map selection changes to the customerSelectionChanged event name.\",\"scope\":\"eventMapping\",\"target\":{\"kind\":\"eventMapping\",\"resolver\":\"events-config\",\"required\":false},\"inputContract\":{\"required\":[],\"properties\":[\"itemClick\",\"actionClick\",\"selectionChange\",\"exportAction\",\"loaded\"],\"semanticTerms\":[\"itemClick\",\"actionClick\",\"selectionChange\",\"exportAction\",\"loaded\"]},\"effects\":[\"merge-object\"],\"affectedPaths\":[\"events\",\"events.itemClick\",\"events.actionClick\",\"events.selectionChange\",\"events.exportAction\",\"events.loaded\"],\"validators\":[{\"validatorId\":\"event-name-supported\",\"level\":\"warning\",\"code\":\"PL022\",\"description\":\"Declarative event names must be stable host event identifiers.\"},{\"validatorId\":\"declared-only-runtime-warning\",\"level\":\"warning\",\"code\":\"PL023\",\"description\":\"Fields documented as declared-only may round-trip through config/editor without changing current runtime behavior.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"}],\"preconditions\":[\"config-initialized\"],\"submissionImpact\":\"config-only\",\"presentationAffordances\":[],\"positiveExamples\":[{\"id\":\"map-declarative-events\",\"request\":\"Map selection changes to the customerSelectionChanged event name.\",\"operationId\":\"events.map\",\"params\":{\"selectionChange\":\"customerSelectionChanged\"},\"isPositive\":true}],\"negativeExamples\":[]}",
|
|
9129
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9130
|
+
"contentHash": "3bd2b6c203c1ca3f1e86fcb8a0986deb822b7624cb3cdb2ae0e8a81e6fb9d7fb",
|
|
9131
|
+
"sourceKind": "component_definition",
|
|
9132
|
+
"sourceId": "praxis-list",
|
|
9133
|
+
"corpusVersion": "1.0.0"
|
|
9134
|
+
},
|
|
9135
|
+
{
|
|
9136
|
+
"chunkIndex": 35,
|
|
6717
9137
|
"chunkKind": "authoring_manifest",
|
|
6718
9138
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"identity\"}",
|
|
6719
9139
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6723,7 +9143,7 @@
|
|
|
6723
9143
|
"corpusVersion": "1.0.0"
|
|
6724
9144
|
},
|
|
6725
9145
|
{
|
|
6726
|
-
"chunkIndex":
|
|
9146
|
+
"chunkIndex": 36,
|
|
6727
9147
|
"chunkKind": "authoring_manifest",
|
|
6728
9148
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"runtimeInputs\",\"runtimeInputs\":[{\"name\":\"config\",\"type\":\"PraxisListConfig\",\"description\":\"Canonical list configuration.\"},{\"name\":\"listId\",\"type\":\"string\",\"description\":\"Stable list id used by persistence.\"},{\"name\":\"enableCustomization\",\"type\":\"boolean\",\"description\":\"Enables runtime authoring surfaces.\"}]}",
|
|
6729
9149
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6733,7 +9153,7 @@
|
|
|
6733
9153
|
"corpusVersion": "1.0.0"
|
|
6734
9154
|
},
|
|
6735
9155
|
{
|
|
6736
|
-
"chunkIndex":
|
|
9156
|
+
"chunkIndex": 37,
|
|
6737
9157
|
"chunkKind": "authoring_manifest",
|
|
6738
9158
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"editableTargets\",\"editableTargets\":[{\"kind\":\"itemTemplate\",\"resolver\":\"list-template-slot\",\"description\":\"Template slot under templating.*.\"},{\"kind\":\"primaryText\",\"resolver\":\"templating-primary\",\"description\":\"Primary text template.\"},{\"kind\":\"secondaryText\",\"resolver\":\"templating-secondary\",\"description\":\"Secondary text template.\"},{\"kind\":\"avatar\",\"resolver\":\"templating-leading\",\"description\":\"Leading/avatar template.\"},{\"kind\":\"badge\",\"resolver\":\"templating-trailing-chip\",\"description\":\"Trailing badge/status template.\"},{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"description\":\"Item action resolved by actions[].id.\"},{\"kind\":\"emptyState\",\"resolver\":\"templating-empty-state\",\"description\":\"Empty state template.\"},{\"kind\":\"selection\",\"resolver\":\"selection-config\",\"description\":\"Selection configuration.\"},{\"kind\":\"layout\",\"resolver\":\"layout-config\",\"description\":\"Layout configuration.\"},{\"kind\":\"rowLayout\",\"resolver\":\"row-layout-config\",\"description\":\"Row layout grid/flex columns and placement slots.\"},{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"description\":\"Local or remote data source binding.\"},{\"kind\":\"interaction\",\"resolver\":\"interaction-config\",\"description\":\"Expandable row interaction configuration.\"},{\"kind\":\"expansion\",\"resolver\":\"expansion-config\",\"description\":\"Inline expansion sections, data source and rendering configuration.\"},{\"kind\":\"rules\",\"resolver\":\"rules-config\",\"description\":\"Item style rules and slot override rules.\"},{\"kind\":\"meta\",\"resolver\":\"list-root-config\",\"description\":\"Root list metadata such as id.\"},{\"kind\":\"skin\",\"resolver\":\"skin-config\",\"description\":\"Visual skin configuration.\"},{\"kind\":\"toolbarUi\",\"resolver\":\"ui-config\",\"description\":\"Search, sort and footer UI configuration.\"},{\"kind\":\"export\",\"resolver\":\"export-config\",\"description\":\"Collection export configuration.\"},{\"kind\":\"localization\",\"resolver\":\"i18n-config\",\"description\":\"Locale and currency configuration.\"},{\"kind\":\"accessibility\",\"resolver\":\"a11y-config\",\"description\":\"Accessibility configuration.\"},{\"kind\":\"eventMapping\",\"resolver\":\"events-config\",\"description\":\"Declarative event name mappings.\"}]}",
|
|
6739
9159
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6743,57 +9163,97 @@
|
|
|
6743
9163
|
"corpusVersion": "1.0.0"
|
|
6744
9164
|
},
|
|
6745
9165
|
{
|
|
6746
|
-
"chunkIndex":
|
|
9166
|
+
"chunkIndex": 38,
|
|
6747
9167
|
"chunkKind": "authoring_manifest",
|
|
6748
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"list.id.set\",\"title\":\"Set list id\",\"scope\":\"meta\",\"targetKind\":\"meta\",\"target\":{\"kind\":\"meta\",\"resolver\":\"list-root-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"set-value\",\"path\":\"id\"}],\"validators\":[\"list-id-stable\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"id\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.primaryText.set\",\"title\":\"Set primary item text\",\"scope\":\"itemTemplate\",\"targetKind\":\"primaryText\",\"target\":{\"kind\":\"primaryText\",\"resolver\":\"templating-primary\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.primary\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.primary\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.secondaryText.set\",\"title\":\"Set secondary item text\",\"scope\":\"itemTemplate\",\"targetKind\":\"secondaryText\",\"target\":{\"kind\":\"secondaryText\",\"resolver\":\"templating-secondary\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"
|
|
9168
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"list.id.set\",\"title\":\"Set list id\",\"scope\":\"meta\",\"targetKind\":\"meta\",\"target\":{\"kind\":\"meta\",\"resolver\":\"list-root-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"set-value\",\"path\":\"id\"}],\"validators\":[\"list-id-stable\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"id\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.primaryText.set\",\"title\":\"Set primary item text\",\"scope\":\"itemTemplate\",\"targetKind\":\"primaryText\",\"target\":{\"kind\":\"primaryText\",\"resolver\":\"templating-primary\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.primary\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.primary\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.secondaryText.set\",\"title\":\"Set secondary item text\",\"scope\":\"itemTemplate\",\"targetKind\":\"secondaryText\",\"target\":{\"kind\":\"secondaryText\",\"resolver\":\"templating-secondary\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.secondary\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.secondary\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.avatar.configure\",\"title\":\"Configure item avatar\",\"scope\":\"itemTemplate\",\"targetKind\":\"avatar\",\"target\":{\"kind\":\"avatar\",\"resolver\":\"templating-leading\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"required\":[\"type\"]},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.leading\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.leading\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.badge.configure\",\"title\":\"Configure item badge\",\"scope\":\"itemTemplate\",\"targetKind\":\"badge\",\"target\":{\"kind\":\"badge\",\"resolver\":\"templating-trailing-chip\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"expr\"],\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"statusPosition\":{\"enum\":[\"inline\",\"top-right\"]},\"labelMap\":{\"type\":\"object\"},\"colorMap\":{\"type\":\"object\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.trailing\"},{\"kind\":\"set-value\",\"path\":\"templating.statusPosition\"},{\"kind\":\"merge-object\",\"path\":\"templating.chipLabelMap\"},{\"kind\":\"merge-object\",\"path\":\"templating.chipColorMap\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.trailing\",\"templating.statusPosition\",\"templating.chipLabelMap\",\"templating.chipColorMap\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
6749
9169
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
6750
|
-
"contentHash": "
|
|
9170
|
+
"contentHash": "799b462baa577760e379f210fb6643d39aef1fd7e63c229aad6377d82afcf405",
|
|
6751
9171
|
"sourceKind": "component_definition",
|
|
6752
9172
|
"sourceId": "praxis-list",
|
|
6753
9173
|
"corpusVersion": "1.0.0"
|
|
6754
9174
|
},
|
|
6755
9175
|
{
|
|
6756
|
-
"chunkIndex":
|
|
9176
|
+
"chunkIndex": 39,
|
|
6757
9177
|
"chunkKind": "authoring_manifest",
|
|
6758
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"
|
|
9178
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"template.slot.set\",\"title\":\"Set any list template slot\",\"scope\":\"templating\",\"targetKind\":\"itemTemplate\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"list-template-slot\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"required\":[\"slot\",\"template\"],\"properties\":{\"slot\":{\"enum\":[\"leading\",\"primary\",\"secondary\",\"meta\",\"trailing\",\"identity\",\"balance\",\"limit\",\"risk\",\"alerts\",\"owner\",\"sectionHeader\",\"emptyState\"]},\"template\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}}}},\"effects\":[{\"kind\":\"compile-domain-patch\",\"handler\":\"list-template-slot-set\",\"handlerContract\":{\"reads\":[\"templating\"],\"writes\":[\"templating.leading\",\"templating.primary\",\"templating.secondary\",\"templating.meta\",\"templating.trailing\",\"templating.identity\",\"templating.balance\",\"templating.limit\",\"templating.risk\",\"templating.alerts\",\"templating.owner\",\"templating.sectionHeader\",\"templating.emptyState\"],\"identityKeys\":[\"slot\"],\"inputSchema\":{\"type\":\"object\",\"required\":[\"slot\",\"template\"],\"properties\":{\"slot\":{\"enum\":[\"leading\",\"primary\",\"secondary\",\"meta\",\"trailing\",\"identity\",\"balance\",\"limit\",\"risk\",\"alerts\",\"owner\",\"sectionHeader\",\"emptyState\"]},\"template\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}}}},\"failureModes\":[\"unsupported-template-slot\",\"invalid-template-expression\",\"ambiguous-template-slot\"],\"description\":\"Writes the requested template into one supported templating slot; slot is the stable identity, not array position.\"}}],\"validators\":[\"template-slot-supported\",\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.leading\",\"templating.primary\",\"templating.secondary\",\"templating.meta\",\"templating.trailing\",\"templating.identity\",\"templating.balance\",\"templating.limit\",\"templating.risk\",\"templating.alerts\",\"templating.owner\",\"templating.sectionHeader\",\"templating.emptyState\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"item.action.add\",\"title\":\"Add item action\",\"scope\":\"itemAction\",\"targetKind\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\",\"label\"],\"properties\":{\"id\":{\"type\":\"string\"},\"label\":{\"type\":\"string\"},\"icon\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"kind\":{\"enum\":[\"icon\",\"button\"]},\"buttonVariant\":{\"enum\":[\"stroked\",\"raised\",\"flat\"]},\"showIf\":{\"type\":\"object\"},\"globalAction\":{\"type\":\"object\",\"additionalProperties\":false,\"properties\":{\"actionId\":{\"type\":\"string\"},\"payload\":{\"type\":\"object\"},\"payloadExpr\":{\"type\":\"string\"},\"meta\":{\"type\":\"object\"}}},\"emitLocal\":{\"type\":\"boolean\"},\"showLoading\":{\"type\":\"boolean\"},\"placement\":{\"enum\":[\"actions\",\"trailing\"]},\"confirmation\":{\"type\":\"object\",\"properties\":{\"title\":{\"type\":\"string\"},\"message\":{\"type\":\"string\"},\"type\":{\"enum\":[\"danger\",\"warning\",\"info\"]}}}}},\"effects\":[{\"kind\":\"append-unique\",\"path\":\"actions[]\",\"key\":\"id\"}],\"validators\":[\"action-id-stable\",\"json-logic-valid\",\"global-action-ref-valid\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"actions[]\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
6759
9179
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
6760
|
-
"contentHash": "
|
|
9180
|
+
"contentHash": "bba427d65dd3d2387f9f8f799ab203d1ef719b356abc74c554b327c2f5a57a3c",
|
|
6761
9181
|
"sourceKind": "component_definition",
|
|
6762
9182
|
"sourceId": "praxis-list",
|
|
6763
9183
|
"corpusVersion": "1.0.0"
|
|
6764
9184
|
},
|
|
6765
9185
|
{
|
|
6766
|
-
"chunkIndex":
|
|
9186
|
+
"chunkIndex": 40,
|
|
6767
9187
|
"chunkKind": "authoring_manifest",
|
|
6768
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"
|
|
9188
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"item.action.update\",\"title\":\"Update item action\",\"scope\":\"itemAction\",\"targetKind\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"required\":[\"id\"]},\"effects\":[{\"kind\":\"merge-by-key\",\"path\":\"actions[]\",\"key\":\"id\"}],\"validators\":[\"action-exists\",\"action-id-stable\",\"json-logic-valid\",\"global-action-ref-valid\",\"declared-only-runtime-warning\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"actions\",\"actions[].id\",\"actions[].icon\",\"actions[].label\",\"actions[].color\",\"actions[].kind\",\"actions[].buttonVariant\",\"actions[].showIf\",\"actions[].globalAction.[actionId]\",\"actions[].globalAction.payload\",\"actions[].globalAction.payloadExpr\",\"actions[].emitLocal\",\"actions[].showLoading\",\"actions[].placement\",\"actions[].confirmation\",\"actions[].confirmation.title\",\"actions[].confirmation.message\",\"actions[].confirmation.type\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\",\"target-exists\"]},{\"operationId\":\"item.action.remove\",\"title\":\"Remove item action\",\"scope\":\"itemAction\",\"targetKind\":\"itemAction\",\"target\":{\"kind\":\"itemAction\",\"resolver\":\"actions-by-id\",\"ambiguityPolicy\":\"fail\",\"required\":true},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"remove-by-key\",\"path\":\"actions[]\",\"key\":\"id\"}],\"destructive\":true,\"requiresConfirmation\":true,\"validators\":[\"action-exists\",\"destructive-removal-confirmation\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"actions[]\"],\"submissionImpact\":\"config-only\",\"preconditions\":[\"config-initialized\",\"target-exists\"]},{\"operationId\":\"selection.mode.set\",\"title\":\"Set selection mode\",\"scope\":\"selection\",\"targetKind\":\"selection\",\"target\":{\"kind\":\"selection\",\"resolver\":\"selection-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"mode\"],\"properties\":{\"mode\":{\"enum\":[\"none\",\"single\",\"multiple\"]},\"compareBy\":{\"type\":\"string\"},\"return\":{\"enum\":[\"value\",\"item\",\"id\"]},\"formControlName\":{\"type\":\"string\"},\"formControlPath\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"selection\"}],\"validators\":[\"selection-mode-supported\",\"bound-field-exists\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"selection\",\"selection.mode\",\"selection.formControlName\",\"selection.formControlPath\",\"selection.compareBy\",\"selection.return\"],\"submissionImpact\":\"affects-submission\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"interaction.expansion.configure\",\"title\":\"Configure expandable row interaction\",\"scope\":\"interaction\",\"targetKind\":\"interaction\",\"target\":{\"kind\":\"interaction\",\"resolver\":\"interaction-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"expandable\":{\"type\":\"boolean\"},\"expandTrigger\":{\"enum\":[\"row\",\"icon\",\"row+icon\"]},\"expandMode\":{\"enum\":[\"single\",\"multiple\"]},\"expandPlacement\":{\"enum\":[\"expand\",\"trailing\"]}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"interaction\"}],\"validators\":[\"interaction-value-supported\",\"row-layout-placement-reachable\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"interaction\",\"interaction.expandable\",\"interaction.expandTrigger\",\"interaction.expandMode\",\"interaction.expandPlacement\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"layout.density.set\",\"title\":\"Set list density\",\"scope\":\"layout\",\"targetKind\":\"layout\",\"target\":{\"kind\":\"layout\",\"resolver\":\"layout-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"density\":{\"enum\":[\"default\",\"comfortable\",\"compact\"]},\"variant\":{\"enum\":[\"list\",\"cards\",\"tiles\"]},\"itemSpacing\":{\"enum\":[\"none\",\"tight\",\"default\",\"relaxed\"]},\"lines\":{\"enum\":[1,2,3]},\"dividers\":{\"enum\":[\"none\",\"between\",\"all\"]},\"model\":{\"enum\":[\"standard\",\"media\",\"hotel\"]},\"groupBy\":{\"type\":\"string\"},\"stickySectionHeader\":{\"type\":\"boolean\"},\"virtualScroll\":{\"type\":\"boolean\"},\"pageSize\":{\"type\":\"number\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"layout\"}],\"validators\":[\"layout-value-supported\",\"bound-field-exists\",\"declared-only-runtime-warning\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"layout\",\"layout.variant\",\"layout.density\",\"layout.itemSpacing\",\"layout.lines\",\"layout.dividers\",\"layout.model\",\"layout.groupBy\",\"layout.stickySectionHeader\",\"layout.virtualScroll\",\"layout.pageSize\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"layout.rowLayout.configure\",\"title\":\"Configure list row layout\",\"scope\":\"rowLayout\",\"targetKind\":\"rowLayout\",\"target\":{\"kind\":\"rowLayout\",\"resolver\":\"row-layout-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"type\":{\"enum\":[\"grid\",\"flex\"]},\"columns\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"required\":[\"slot\"],\"properties\":{\"slot\":{\"enum\":[null,\"actions\",\"expand\"]},\"width\":{\"type\":\"string\"},\"minWidth\":{\"type\":\"string\"},\"maxWidth\":{\"type\":\"string\"},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"justify\":{\"enum\":[\"start\",\"center\",\"end\",\"stretch\"]},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}},\"gap\":{\"type\":\"string\"},\"align\":{\"enum\":[\"start\",\"center\",\"end\",\"stretch\"]},\"itemAlignY\":{\"enum\":[\"start\",\"center\",\"end\",\"stretch\"]},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"layout.rowLayout\"}],\"validators\":[\"row-layout-supported\",\"row-layout-placement-reachable\",\"style-value-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"layout.rowLayout\",\"layout.rowLayout.type\",\"layout.rowLayout.columns\",\"layout.rowLayout.columns[].slot\",\"layout.rowLayout.columns[].width\",\"layout.rowLayout.columns[].minWidth\",\"layout.rowLayout.columns[].maxWidth\",\"layout.rowLayout.columns[].align\",\"layout.rowLayout.columns[].justify\",\"layout.rowLayout.columns[].class\",\"layout.rowLayout.columns[].style\",\"layout.rowLayout.gap\",\"layout.rowLayout.align\",\"layout.rowLayout.itemAlignY\",\"layout.rowLayout.class\",\"layout.rowLayout.style\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"skin.configure\",\"title\":\"Configure list skin\",\"scope\":\"skin\",\"targetKind\":\"skin\",\"target\":{\"kind\":\"skin\",\"resolver\":\"skin-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"type\":{\"enum\":[\"pill-soft\",\"gradient-tile\",\"glass\",\"elevated\",\"outline\",\"flat\",\"neumorphism\",\"custom\"]},\"gradient\":{\"type\":\"object\",\"properties\":{\"from\":{\"type\":\"string\"},\"to\":{\"type\":\"string\"},\"angle\":{\"type\":\"number\"}}},\"radius\":{\"type\":\"string\"},\"shadow\":{\"type\":\"string\"},\"border\":{\"type\":\"string\"},\"backdropBlur\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"inlineStyle\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"skin\"}],\"validators\":[\"skin-value-supported\",\"style-value-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"skin\",\"skin.type\",\"skin.gradient\",\"skin.gradient.from\",\"skin.gradient.to\",\"skin.gradient.angle\",\"skin.radius\",\"skin.shadow\",\"skin.border\",\"skin.backdropBlur\",\"skin.class\",\"skin.inlineStyle\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
6769
9189
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
6770
|
-
"contentHash": "
|
|
9190
|
+
"contentHash": "9867aa520b9da7a57472d9acacbbbc9a742c92f5f1c71f74fce7ebdc616cb175",
|
|
6771
9191
|
"sourceKind": "component_definition",
|
|
6772
9192
|
"sourceId": "praxis-list",
|
|
6773
9193
|
"corpusVersion": "1.0.0"
|
|
6774
9194
|
},
|
|
6775
9195
|
{
|
|
6776
|
-
"chunkIndex":
|
|
9196
|
+
"chunkIndex": 41,
|
|
6777
9197
|
"chunkKind": "authoring_manifest",
|
|
6778
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"
|
|
9198
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"templating.display.configure\",\"title\":\"Configure list template display options\",\"scope\":\"templating\",\"targetKind\":\"itemTemplate\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-display-options\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"metaPlacement\":{\"enum\":[\"side\",\"line\"]},\"metaPrefixIcon\":{\"type\":\"string\"},\"statusPosition\":{\"enum\":[\"inline\",\"top-right\"]},\"chipColorMap\":{\"type\":\"object\"},\"chipLabelMap\":{\"type\":\"object\"},\"iconColorMap\":{\"type\":\"object\"},\"featuresVisible\":{\"type\":\"boolean\"},\"featuresMode\":{\"enum\":[\"icons+labels\",\"icons-only\",\"labels-only\"]}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating\"}],\"validators\":[\"template-display-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating\",\"templating.metaPlacement\",\"templating.metaPrefixIcon\",\"templating.statusPosition\",\"templating.chipColorMap\",\"templating.chipLabelMap\",\"templating.iconColorMap\",\"templating.featuresVisible\",\"templating.featuresMode\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"templating.features.set\",\"title\":\"Set list feature line\",\"scope\":\"templating\",\"targetKind\":\"itemTemplate\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-features\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"features\"],\"properties\":{\"features\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"required\":[\"expr\"],\"properties\":{\"icon\":{\"type\":\"string\"},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}}},\"effects\":[{\"kind\":\"set-value\",\"path\":\"templating.features\"}],\"validators\":[\"bound-field-exists\",\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.features\",\"templating.features[].icon\",\"templating.features[].expr\",\"templating.features[].class\",\"templating.features[].style\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"templating.skeleton.configure\",\"title\":\"Configure list skeleton\",\"scope\":\"templating\",\"targetKind\":\"itemTemplate\",\"target\":{\"kind\":\"itemTemplate\",\"resolver\":\"templating-skeleton\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"count\"],\"properties\":{\"count\":{\"type\":\"number\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.skeleton\"}],\"validators\":[\"skeleton-value-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.skeleton\",\"templating.skeleton.count\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"rules.itemStyle.upsert\",\"title\":\"Upsert item style rule\",\"scope\":\"rules\",\"targetKind\":\"rules\",\"target\":{\"kind\":\"rules\",\"resolver\":\"rules-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"condition\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"border\":{\"type\":\"string\"},\"background\":{\"type\":\"string\"},\"effects\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"kind\":{\"enum\":[\"item-style\"]},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"border\":{\"type\":\"string\"},\"background\":{\"type\":\"string\"}}}}}},\"effects\":[{\"kind\":\"merge-by-key\",\"path\":\"rules.itemStyles[]\",\"key\":\"id\"}],\"validators\":[\"rule-id-stable\",\"json-logic-valid\",\"style-value-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"rules\",\"rules.itemStyles\",\"rules.itemStyles[].id\",\"rules.itemStyles[].condition\",\"rules.itemStyles[].class\",\"rules.itemStyles[].style\",\"rules.itemStyles[].border\",\"rules.itemStyles[].background\",\"rules.itemStyles[].effects\",\"rules.itemStyles[].effects[].kind\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
6779
9199
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
6780
|
-
"contentHash": "
|
|
9200
|
+
"contentHash": "3bb78349d813062f66f05dcf89937428f90618d7a4efb390cde98b6a2a63fe48",
|
|
6781
9201
|
"sourceKind": "component_definition",
|
|
6782
9202
|
"sourceId": "praxis-list",
|
|
6783
9203
|
"corpusVersion": "1.0.0"
|
|
6784
9204
|
},
|
|
6785
9205
|
{
|
|
6786
|
-
"chunkIndex":
|
|
9206
|
+
"chunkIndex": 42,
|
|
6787
9207
|
"chunkKind": "authoring_manifest",
|
|
6788
|
-
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"
|
|
9208
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"rules.slotOverride.upsert\",\"title\":\"Upsert slot override rule\",\"scope\":\"rules\",\"targetKind\":\"rules\",\"target\":{\"kind\":\"rules\",\"resolver\":\"rules-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"id\",\"slot\"],\"properties\":{\"id\":{\"type\":\"string\"},\"slot\":{},\"condition\":{\"type\":\"object\"},\"template\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"hide\":{\"type\":\"boolean\"},\"effects\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"kind\":{\"enum\":[\"slot-override\"]},\"template\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"hide\":{\"type\":\"boolean\"}}}}}},\"effects\":[{\"kind\":\"merge-by-key\",\"path\":\"rules.slotOverrides[]\",\"key\":\"id\"}],\"validators\":[\"rule-id-stable\",\"template-slot-supported\",\"json-logic-valid\",\"template-expression-safe\",\"style-value-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"rules\",\"rules.slotOverrides\",\"rules.slotOverrides[].id\",\"rules.slotOverrides[].slot\",\"rules.slotOverrides[].condition\",\"rules.slotOverrides[].template\",\"rules.slotOverrides[].class\",\"rules.slotOverrides[].style\",\"rules.slotOverrides[].hide\",\"rules.slotOverrides[].effects\",\"rules.slotOverrides[].effects[].kind\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
6789
9209
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
6790
|
-
"contentHash": "
|
|
9210
|
+
"contentHash": "5ed6c5b039bdf3f40eb6876136aaf9405d03ec02f1181bb9ce5094abfa0892b2",
|
|
6791
9211
|
"sourceKind": "component_definition",
|
|
6792
9212
|
"sourceId": "praxis-list",
|
|
6793
9213
|
"corpusVersion": "1.0.0"
|
|
6794
9214
|
},
|
|
6795
9215
|
{
|
|
6796
|
-
"chunkIndex":
|
|
9216
|
+
"chunkIndex": 43,
|
|
9217
|
+
"chunkKind": "authoring_manifest",
|
|
9218
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"emptyState.set\",\"title\":\"Set empty state\",\"scope\":\"itemTemplate\",\"targetKind\":\"emptyState\",\"target\":{\"kind\":\"emptyState\",\"resolver\":\"templating-empty-state\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"templating.emptyState\"}],\"validators\":[\"template-expression-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"templating.emptyState\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
9219
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9220
|
+
"contentHash": "50501ed2c26ea90eb8aa202a14b477d24340ab1199bc58ecc79471e76afd1d87",
|
|
9221
|
+
"sourceKind": "component_definition",
|
|
9222
|
+
"sourceId": "praxis-list",
|
|
9223
|
+
"corpusVersion": "1.0.0"
|
|
9224
|
+
},
|
|
9225
|
+
{
|
|
9226
|
+
"chunkIndex": 44,
|
|
9227
|
+
"chunkKind": "authoring_manifest",
|
|
9228
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations[20]\",\"fragmentPath\":\"operations[20]\",\"fragmentIdentity\":{\"operationId\":\"expansion.configure\"},\"fragment\":{\"operationId\":\"expansion.configure\",\"title\":\"Configure list expansion\",\"scope\":\"expansion\",\"targetKind\":\"expansion\",\"target\":{\"kind\":\"expansion\",\"resolver\":\"expansion-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"sections\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"required\":[\"id\",\"type\"],\"properties\":{\"id\":{\"type\":\"string\"},\"title\":{\"type\":\"string\"},\"type\":{\"enum\":[\"info-list\",\"chip-list\",\"timeline\",\"key-value\",\"metadata\",\"component\",\"rich-content\"]},\"itemsExpr\":{\"type\":\"string\"},\"document\":{\"type\":\"object\"},\"documentExpr\":{\"type\":\"string\"},\"emptyLabel\":{\"type\":\"string\"},\"metadata\":{\"type\":\"object\",\"properties\":{\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"columns\":{\"enum\":[1,2,3]},\"gap\":{\"type\":\"string\"},\"keyClass\":{\"type\":\"string\"},\"valueClass\":{\"type\":\"string\"},\"keyStyle\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"showIf\":{\"type\":\"object\"}}}},\"dataSource\":{\"type\":\"object\",\"properties\":{\"mode\":{\"enum\":[\"inline\",\"resource\",\"resourcePath\"]},\"resource\":{\"type\":\"object\",\"properties\":{\"kind\":{\"type\":\"string\"},\"id\":{\"type\":\"string\"},\"version\":{\"type\":\"string\"}}},\"resourcePath\":{\"type\":\"object\",\"properties\":{\"path\":{\"type\":\"string\"},\"method\":{\"enum\":[\"GET\",\"POST\"]},\"paramsMap\":{\"type\":\"object\"}}},\"resourceAllowList\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"fallbackMode\":{\"enum\":[\"none\",\"inline\",\"resource\"]},\"cache\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"}}},\"cancelOnCollapse\":{\"type\":\"boolean\"}}},\"schemaContract\":{\"type\":\"object\",\"properties\":{\"kind\":{\"enum\":[\"praxis.detail.schema\"]},\"version\":{\"type\":\"string\"},\"allowedNodes\":{\"type\":\"array\",\"items\":{\"enum\":[\"info-list\",\"chip-list\",\"timeline\",\"key-value\",\"metadata\",\"component\",\"rich-content\"]}},\"maxSections\":{\"type\":\"number\"},\"maxItemsPerSection\":{\"type\":\"number\"},\"requireSectionIds\":{\"type\":\"boolean\"}}},\"rendering\":{\"type\":\"object\",\"properties\":{\"shell\":{\"enum\":[\"attached\",\"detached\",\"modal\"]},\"columns\":{\"enum\":[1,2,3]},\"gap\":{\"type\":\"string\"},\"padding\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"loadingTemplate\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}},\"errorTemplate\":{\"type\":\"object\",\"required\":[\"type\",\"expr\"],\"properties\":{\"type\":{\"enum\":[\"text\",\"icon\",\"image\",\"chip\",\"rating\",\"currency\",\"date\",\"html\",\"slot\",\"metric\",\"compose\",\"component\"]},\"expr\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]},\"imageAlt\":{\"type\":\"string\"},\"props\":{\"type\":\"object\",\"properties\":{\"rating\":{\"type\":\"object\",\"properties\":{\"max\":{\"type\":\"number\"},\"size\":{\"type\":\"number\"},\"color\":{\"type\":\"string\"}}},\"metric\":{\"type\":\"object\",\"properties\":{\"label\":{\"type\":\"string\"},\"valueExpr\":{\"type\":\"string\"},\"caption\":{\"type\":\"string\"},\"subcaption\":{\"type\":\"string\"},\"captionPosition\":{\"enum\":[\"below-value\",\"below-progress\"]},\"icon\":{\"type\":\"string\"},\"iconExpr\":{\"type\":\"string\"},\"tone\":{\"type\":\"string\"},\"toneExpr\":{\"type\":\"string\"},\"layout\":{\"enum\":[\"value-only\",\"value+caption\",\"icon+value+caption\",\"stacked-center\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"progress\":{\"type\":\"object\",\"properties\":{\"valueExpr\":{\"type\":\"string\"},\"max\":{\"type\":\"number\"},\"mode\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"color\":{\"type\":\"string\"},\"colorExpr\":{\"type\":\"string\"},\"trackColor\":{\"type\":\"string\"}}},\"valueClass\":{\"type\":\"string\"},\"valueStyle\":{\"type\":\"string\"},\"showBar\":{\"type\":\"boolean\"},\"barValueExpr\":{\"type\":\"string\"},\"barColor\":{\"type\":\"string\"},\"barVariant\":{\"enum\":[\"determinate\",\"indeterminate\"]},\"legendExpr\":{\"type\":\"string\"},\"iconPosition\":{\"enum\":[\"left\",\"right\",\"top\"]},\"iconColorExpr\":{\"type\":\"string\"}}},\"compose\":{\"type\":\"object\",\"properties\":{\"items\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"nodes\":{\"type\":\"array\",\"items\":{\"type\":\"object\"}},\"direction\":{\"enum\":[\"row\",\"column\"]},\"orientation\":{\"enum\":[\"horizontal\",\"vertical\"]},\"align\":{\"enum\":[\"start\",\"center\",\"end\"]},\"gap\":{\"type\":\"string\"},\"wrap\":{\"type\":\"boolean\"},\"separator\":{\"type\":\"string\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}},\"component\":{\"type\":\"object\",\"required\":[\"id\"],\"properties\":{\"id\":{\"type\":\"string\"},\"inputs\":{\"type\":\"object\"},\"class\":{\"type\":\"string\"},\"style\":{\"type\":\"string\"}}}}},\"badge\":{\"type\":\"object\",\"properties\":{\"expr\":{\"type\":\"string\"},\"color\":{\"type\":\"string\"},\"variant\":{\"enum\":[\"filled\",\"outlined\"]}}}}}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"expansion\"}],\"validators\":[\"expansion-section-id-stable\",\"expansion-value-supported\",\"json-logic-valid\",\"template-expression-safe\",\"remote-resource-binding-safe\",\"style-value-safe\",\"editor-round-trip-preserve\"]}}",
|
|
9229
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9230
|
+
"contentHash": "e9a4ad0233da277c68211591a345564f4a7f44d8c7d903a906d5c8b760651972",
|
|
9231
|
+
"sourceKind": "component_definition",
|
|
9232
|
+
"sourceId": "praxis-list",
|
|
9233
|
+
"corpusVersion": "1.0.0"
|
|
9234
|
+
},
|
|
9235
|
+
{
|
|
9236
|
+
"chunkIndex": 45,
|
|
9237
|
+
"chunkKind": "authoring_manifest",
|
|
9238
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations[20]\",\"fragmentPath\":\"operations[20]\",\"fragmentIdentity\":{\"operationId\":\"expansion.configure\"},\"fragment\":{\"affectedPaths\":[\"expansion\",\"expansion.sections\",\"expansion.sections[].id\",\"expansion.sections[].title\",\"expansion.sections[].type\",\"expansion.sections[].itemsExpr\",\"expansion.sections[].document\",\"expansion.sections[].documentExpr\",\"expansion.sections[].emptyLabel\",\"expansion.sections[].metadata\",\"expansion.sections[].component\",\"expansion.sections[].class\",\"expansion.sections[].style\",\"expansion.sections[].showIf\",\"expansion.dataSource\",\"expansion.dataSource.mode\",\"expansion.dataSource.resource\",\"expansion.dataSource.resource.kind\",\"expansion.dataSource.resource.id\",\"expansion.dataSource.resource.version\",\"expansion.dataSource.resourcePath\",\"expansion.dataSource.resourcePath.path\",\"expansion.dataSource.resourcePath.method\",\"expansion.dataSource.resourcePath.paramsMap\",\"expansion.dataSource.resourceAllowList\",\"expansion.dataSource.fallbackMode\",\"expansion.dataSource.cache\",\"expansion.dataSource.cache.enabled\",\"expansion.dataSource.cancelOnCollapse\",\"expansion.schemaContract\",\"expansion.schemaContract.kind\",\"expansion.schemaContract.version\",\"expansion.schemaContract.allowedNodes\",\"expansion.schemaContract.maxSections\",\"expansion.schemaContract.maxItemsPerSection\",\"expansion.schemaContract.requireSectionIds\",\"expansion.rendering\",\"expansion.rendering.shell\",\"expansion.rendering.columns\",\"expansion.rendering.gap\",\"expansion.rendering.padding\",\"expansion.rendering.class\",\"expansion.rendering.style\",\"expansion.rendering.loadingTemplate\",\"expansion.rendering.errorTemplate\"],\"submissionImpact\":\"affects-remote-binding\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}}",
|
|
9239
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9240
|
+
"contentHash": "f6f5c169b85b477f03c7b5fa2b73e6cbdd3a1ceaba6ee111363d7a934fa7f9c7",
|
|
9241
|
+
"sourceKind": "component_definition",
|
|
9242
|
+
"sourceId": "praxis-list",
|
|
9243
|
+
"corpusVersion": "1.0.0"
|
|
9244
|
+
},
|
|
9245
|
+
{
|
|
9246
|
+
"chunkIndex": 46,
|
|
9247
|
+
"chunkKind": "authoring_manifest",
|
|
9248
|
+
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"operations\",\"operations\":[{\"operationId\":\"data.resource.bind\",\"title\":\"Bind remote resource\",\"scope\":\"dataBinding\",\"targetKind\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"resourcePath\"],\"properties\":{\"resourcePath\":{\"type\":\"string\"},\"query\":{\"type\":\"object\"},\"sort\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"clearLocalData\":{\"type\":\"boolean\",\"default\":true}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"dataSource\"}],\"validators\":[\"remote-resource-binding-safe\",\"local-remote-precedence-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"dataSource.resourcePath\",\"dataSource.query\",\"dataSource.sort\",\"dataSource.data\"],\"submissionImpact\":\"affects-remote-binding\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"data.local.set\",\"title\":\"Set local list data\",\"scope\":\"dataBinding\",\"targetKind\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"data\"],\"properties\":{\"data\":{\"type\":\"array\"},\"clearResourcePath\":{\"type\":\"boolean\",\"default\":false}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"dataSource\"}],\"validators\":[\"local-data-array-safe\",\"local-remote-precedence-safe\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"dataSource\",\"dataSource.data\",\"dataSource.resourcePath\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"data.query.set\",\"title\":\"Set remote list query\",\"scope\":\"dataBinding\",\"targetKind\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"query\"],\"properties\":{\"query\":{\"type\":\"object\"}}},\"effects\":[{\"kind\":\"set-value\",\"path\":\"dataSource.query\"}],\"validators\":[\"query-value-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"dataSource.query\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"data.sort.set\",\"title\":\"Set remote list sort\",\"scope\":\"dataBinding\",\"targetKind\":\"dataBinding\",\"target\":{\"kind\":\"dataBinding\",\"resolver\":\"data-source-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"required\":[\"sort\"],\"properties\":{\"sort\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}}}},\"effects\":[{\"kind\":\"set-value\",\"path\":\"dataSource.sort\"}],\"validators\":[\"sort-entry-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"dataSource.sort\",\"dataSource.sort[]\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"export.configure\",\"title\":\"Configure list collection export\",\"scope\":\"export\",\"targetKind\":\"export\",\"target\":{\"kind\":\"export\",\"resolver\":\"export-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"formats\":{\"type\":\"array\",\"items\":{\"enum\":[\"csv\",\"json\",\"excel\",\"pdf\",\"print\"]}},\"general\":{\"type\":\"object\",\"properties\":{\"scope\":{\"enum\":[\"auto\",\"selected\",\"filtered\",\"currentPage\",\"all\"]},\"includeHeaders\":{\"type\":\"boolean\"},\"maxRows\":{\"type\":\"number\"},\"defaultFileName\":{\"type\":\"string\"},\"includeFields\":{\"oneOf\":[{\"enum\":[\"all\"]},{\"type\":\"array\",\"items\":{\"type\":\"string\"}}]},\"applyFormatting\":{\"type\":\"boolean\"}}}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"export\"}],\"validators\":[\"export-value-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"export\",\"export.enabled\",\"export.formats\",\"export.formats[]\",\"export.general.scope\",\"export.general.includeHeaders\",\"export.general.maxRows\",\"export.general.defaultFileName\",\"export.general.includeFields\",\"export.general.applyFormatting\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"ui.toolbar.configure\",\"title\":\"Configure list toolbar UI\",\"scope\":\"toolbarUi\",\"targetKind\":\"toolbarUi\",\"target\":{\"kind\":\"toolbarUi\",\"resolver\":\"ui-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"showSearch\":{\"type\":\"boolean\"},\"searchField\":{\"type\":\"string\"},\"searchPlaceholder\":{\"type\":\"string\"},\"showSort\":{\"type\":\"boolean\"},\"sortOptions\":{\"type\":\"array\",\"items\":{\"oneOf\":[{\"type\":\"string\"},{\"type\":\"object\",\"required\":[\"label\",\"value\"],\"properties\":{\"label\":{\"type\":\"string\"},\"value\":{\"type\":\"string\"}}}]}},\"showRange\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"ui\"}],\"validators\":[\"bound-field-exists\",\"sort-entry-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"ui\",\"ui.showSearch\",\"ui.searchField\",\"ui.searchPlaceholder\",\"ui.showSort\",\"ui.sortOptions\",\"ui.sortOptions[].label\",\"ui.sortOptions[].value\",\"ui.showRange\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"i18n.configure\",\"title\":\"Configure list localization\",\"scope\":\"localization\",\"targetKind\":\"localization\",\"target\":{\"kind\":\"localization\",\"resolver\":\"i18n-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"locale\":{\"type\":\"string\"},\"currency\":{\"type\":\"string\"},\"localization\":{\"type\":\"object\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"i18n\"}],\"validators\":[\"i18n-value-supported\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"i18n\",\"i18n.locale\",\"i18n.currency\",\"i18n.localization\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"a11y.configure\",\"title\":\"Configure list accessibility\",\"scope\":\"accessibility\",\"targetKind\":\"accessibility\",\"target\":{\"kind\":\"accessibility\",\"resolver\":\"a11y-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"ariaLabel\":{\"type\":\"string\"},\"ariaLabelledBy\":{\"type\":\"string\"},\"highContrast\":{\"type\":\"boolean\"},\"reduceMotion\":{\"type\":\"boolean\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"a11y\"}],\"validators\":[\"a11y-value-supported\",\"declared-only-runtime-warning\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"a11y\",\"a11y.ariaLabel\",\"a11y.ariaLabelledBy\",\"a11y.highContrast\",\"a11y.reduceMotion\"],\"submissionImpact\":\"visual-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]},{\"operationId\":\"events.map\",\"title\":\"Configure declarative event mappings\",\"scope\":\"eventMapping\",\"targetKind\":\"eventMapping\",\"target\":{\"kind\":\"eventMapping\",\"resolver\":\"events-config\",\"ambiguityPolicy\":\"fail\",\"required\":false},\"inputSchema\":{\"type\":\"object\",\"properties\":{\"itemClick\":{\"type\":\"string\"},\"actionClick\":{\"type\":\"string\"},\"selectionChange\":{\"type\":\"string\"},\"exportAction\":{\"type\":\"string\"},\"loaded\":{\"type\":\"string\"}}},\"effects\":[{\"kind\":\"merge-object\",\"path\":\"events\"}],\"validators\":[\"event-name-supported\",\"declared-only-runtime-warning\",\"editor-round-trip-preserve\"],\"affectedPaths\":[\"events\",\"events.itemClick\",\"events.actionClick\",\"events.selectionChange\",\"events.exportAction\",\"events.loaded\"],\"submissionImpact\":\"config-only\",\"destructive\":false,\"requiresConfirmation\":false,\"preconditions\":[\"config-initialized\"]}]}",
|
|
9249
|
+
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
9250
|
+
"contentHash": "c6c0a0a98b250022a2e43fa892c482e2d8a3c2588b160663682a092d385535d7",
|
|
9251
|
+
"sourceKind": "component_definition",
|
|
9252
|
+
"sourceId": "praxis-list",
|
|
9253
|
+
"corpusVersion": "1.0.0"
|
|
9254
|
+
},
|
|
9255
|
+
{
|
|
9256
|
+
"chunkIndex": 47,
|
|
6797
9257
|
"chunkKind": "authoring_manifest",
|
|
6798
9258
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"validators\",\"validators\":[{\"validatorId\":\"list-id-stable\",\"level\":\"error\",\"code\":\"PL000\",\"description\":\"List id must remain stable for persistence and editor reopen flows.\"},{\"validatorId\":\"bound-field-exists\",\"level\":\"error\",\"code\":\"PL001\",\"description\":\"Bound template and selection fields must exist in local data or schema context when available.\"},{\"validatorId\":\"template-expression-safe\",\"level\":\"error\",\"code\":\"PL002\",\"description\":\"Template expressions must use supported ${item.path} syntax and allowed pipes.\"},{\"validatorId\":\"action-id-stable\",\"level\":\"error\",\"code\":\"PL003\",\"description\":\"Item actions must declare stable unique ids.\"},{\"validatorId\":\"action-exists\",\"level\":\"error\",\"code\":\"PL004\",\"description\":\"Target action id must exist before update or removal.\"},{\"validatorId\":\"destructive-removal-confirmation\",\"level\":\"error\",\"code\":\"PL005\",\"description\":\"Destructive action removal requires explicit confirmation.\"},{\"validatorId\":\"remote-resource-binding-safe\",\"level\":\"error\",\"code\":\"PL006\",\"description\":\"Remote resource binding must use canonical resource metadata and safe resourcePath values.\"},{\"validatorId\":\"local-remote-precedence-safe\",\"level\":\"warning\",\"code\":\"PL007\",\"description\":\"When binding resourcePath, tools must account for dataSource.data taking precedence over remote data.\"},{\"validatorId\":\"selection-mode-supported\",\"level\":\"error\",\"code\":\"PL008\",\"description\":\"Selection mode and return policy must match the runtime enum.\"},{\"validatorId\":\"layout-value-supported\",\"level\":\"error\",\"code\":\"PL009\",\"description\":\"Layout density and related enum values must match PraxisListConfig.\"},{\"validatorId\":\"json-logic-valid\",\"level\":\"error\",\"code\":\"PL010\",\"description\":\"Action visibility conditions must be serializable Json Logic.\"},{\"validatorId\":\"global-action-ref-valid\",\"level\":\"warning\",\"code\":\"PL011\",\"description\":\"Structured globalAction refs must use a registered action id when registry context is available.\"},{\"validatorId\":\"editor-round-trip-preserve\",\"level\":\"error\",\"code\":\"PL012\",\"description\":\"The list config editor and JSON editor must preserve the saved shape without drift.\"},{\"validatorId\":\"template-slot-supported\",\"level\":\"error\",\"code\":\"PL013\",\"description\":\"Template slot names must be one of the runtime-supported catalog slots.\"},{\"validatorId\":\"skin-value-supported\",\"level\":\"error\",\"code\":\"PL014\",\"description\":\"Skin values must match the runtime-supported skin contract.\"},{\"validatorId\":\"style-value-safe\",\"level\":\"warning\",\"code\":\"PL015\",\"description\":\"Inline styles and classes must be safe for the host sanitization policy.\"},{\"validatorId\":\"template-display-supported\",\"level\":\"error\",\"code\":\"PL016\",\"description\":\"Template display options must match the runtime enum contract.\"},{\"validatorId\":\"skeleton-value-supported\",\"level\":\"error\",\"code\":\"PL017\",\"description\":\"Skeleton counts must be numeric and non-negative.\"},{\"validatorId\":\"local-data-array-safe\",\"level\":\"error\",\"code\":\"PL018\",\"description\":\"Local list data must be an array and must not hide an intended remote binding accidentally.\"},{\"validatorId\":\"sort-entry-supported\",\"level\":\"error\",\"code\":\"PL019\",\"description\":\"Sort entries must use the canonical field,direction format or labeled sort option shape.\"},{\"validatorId\":\"query-value-supported\",\"level\":\"error\",\"code\":\"PL031\",\"description\":\"Remote list query must be a serializable object compatible with the resource filter contract.\"},{\"validatorId\":\"i18n-value-supported\",\"level\":\"warning\",\"code\":\"PL020\",\"description\":\"Locale and currency values should be valid BCP 47 / ISO currency values when host validation is available.\"},{\"validatorId\":\"a11y-value-supported\",\"level\":\"error\",\"code\":\"PL021\",\"description\":\"Accessibility labels must be non-empty when provided.\"},{\"validatorId\":\"export-value-supported\",\"level\":\"error\",\"code\":\"PL030\",\"description\":\"Export formats and scopes must match the shared collection export contract.\"},{\"validatorId\":\"event-name-supported\",\"level\":\"warning\",\"code\":\"PL022\",\"description\":\"Declarative event names must be stable host event identifiers.\"},{\"validatorId\":\"declared-only-runtime-warning\",\"level\":\"warning\",\"code\":\"PL023\",\"description\":\"Fields documented as declared-only may round-trip through config/editor without changing current runtime behavior.\"},{\"validatorId\":\"row-layout-supported\",\"level\":\"error\",\"code\":\"PL024\",\"description\":\"Row layout columns must use supported slots and enum values.\"},{\"validatorId\":\"row-layout-placement-reachable\",\"level\":\"warning\",\"code\":\"PL025\",\"description\":\"Action and expansion placements must be reachable from the active row layout.\"},{\"validatorId\":\"interaction-value-supported\",\"level\":\"error\",\"code\":\"PL026\",\"description\":\"Interaction expansion values must match the runtime enum contract.\"},{\"validatorId\":\"rule-id-stable\",\"level\":\"error\",\"code\":\"PL027\",\"description\":\"List style and slot override rules must declare stable unique ids.\"},{\"validatorId\":\"expansion-section-id-stable\",\"level\":\"error\",\"code\":\"PL028\",\"description\":\"Expansion sections must declare stable unique ids.\"},{\"validatorId\":\"expansion-value-supported\",\"level\":\"error\",\"code\":\"PL029\",\"description\":\"Expansion section, data source, schema contract and rendering values must match the runtime contract.\"}]}",
|
|
6799
9259
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6803,7 +9263,7 @@
|
|
|
6803
9263
|
"corpusVersion": "1.0.0"
|
|
6804
9264
|
},
|
|
6805
9265
|
{
|
|
6806
|
-
"chunkIndex":
|
|
9266
|
+
"chunkIndex": 48,
|
|
6807
9267
|
"chunkKind": "authoring_manifest",
|
|
6808
9268
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"roundTripRequirements\",\"roundTripRequirements\":[\"List editor must preserve templating.primary, templating.secondary, templating.leading, templating.trailing and templating.emptyState.\",\"Actions must round-trip by actions[].id rather than array index.\",\"Rules must round-trip by rules.itemStyles[].id and rules.slotOverrides[].id rather than array index.\",\"Expansion sections must round-trip by expansion.sections[].id rather than array index.\",\"Row layout must preserve executive slots identity, balance, limit, risk, alerts, owner, actions and expand.\",\"Export configuration must preserve the shared collection export scope and format contract.\",\"dataSource.data precedence over dataSource.resourcePath must remain explicit when binding remote resources.\"]}",
|
|
6809
9269
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6813,7 +9273,7 @@
|
|
|
6813
9273
|
"corpusVersion": "1.0.0"
|
|
6814
9274
|
},
|
|
6815
9275
|
{
|
|
6816
|
-
"chunkIndex":
|
|
9276
|
+
"chunkIndex": 49,
|
|
6817
9277
|
"chunkKind": "authoring_manifest",
|
|
6818
9278
|
"content": "{\"schemaVersion\":\"1.0.0\",\"manifestVersion\":\"1.1.0\",\"componentId\":\"praxis-list\",\"ownerPackage\":\"@praxisui/list\",\"configSchemaId\":\"PraxisListConfig\",\"chunkSection\":\"examples\",\"examples\":[{\"id\":\"set-list-id\",\"request\":\"Set the stable list id to employees-list.\",\"operationId\":\"list.id.set\",\"params\":{\"id\":\"employees-list\"},\"isPositive\":true},{\"id\":\"bind-title-subtitle-fields\",\"request\":\"Use name as title and department as subtitle.\",\"operationId\":\"item.primaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.name}\"},\"isPositive\":true},{\"id\":\"bind-secondary-field\",\"request\":\"Show department below the title.\",\"operationId\":\"item.secondaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.department}\"},\"isPositive\":true},{\"id\":\"configure-avatar-image\",\"request\":\"Use photoUrl as the item avatar.\",\"operationId\":\"item.avatar.configure\",\"params\":{\"type\":\"image\",\"expr\":\"${item.photoUrl}\",\"imageAlt\":\"Employee photo\"},\"isPositive\":true},{\"id\":\"set-template-slot\",\"request\":\"Set the meta slot to show the employee score.\",\"operationId\":\"template.slot.set\",\"params\":{\"slot\":\"meta\",\"template\":{\"type\":\"metric\",\"expr\":\"${item.score}\"}},\"isPositive\":true},{\"id\":\"add-item-action\",\"request\":\"Add an edit action to every item.\",\"operationId\":\"item.action.add\",\"params\":{\"id\":\"edit\",\"label\":\"Edit\",\"icon\":\"edit\",\"kind\":\"icon\"},\"isPositive\":true},{\"id\":\"update-item-action-placement\",\"request\":\"Move the edit action into the dedicated actions column and show loading.\",\"operationId\":\"item.action.update\",\"params\":{\"id\":\"edit\",\"placement\":\"actions\",\"showLoading\":true},\"isPositive\":true},{\"id\":\"add-navigation-open-route-action\",\"request\":\"Add an item action that opens the guide route with the selected employee id.\",\"operationId\":\"item.action.add\",\"params\":{\"id\":\"open-guide-route\",\"label\":\"Abrir Guia\",\"icon\":\"travel_explore\",\"kind\":\"button\",\"buttonVariant\":\"stroked\",\"globalAction\":{\"actionId\":\"navigation.openRoute\",\"payload\":{\"path\":\"/components-showcase/surface-open-guide\",\"query\":{\"funcionarioId\":\"${item.id}\"},\"state\":{\"funcionarioId\":\"${item.id}\",\"source\":\"surface-open-list-demo\"}}},\"emitLocal\":false,\"showLoading\":true},\"isPositive\":true},{\"id\":\"remove-item-action-with-confirmation\",\"request\":\"Remove the edit action after confirmation.\",\"operationId\":\"item.action.remove\",\"params\":{\"id\":\"edit\"},\"isPositive\":true},{\"id\":\"configure-badge-from-status\",\"request\":\"Show a status badge in the item corner.\",\"operationId\":\"item.badge.configure\",\"params\":{\"expr\":\"${item.status}\",\"statusPosition\":\"top-right\",\"color\":\"primary\"},\"isPositive\":true},{\"id\":\"switch-selection-mode\",\"request\":\"Allow selecting multiple employees by id.\",\"operationId\":\"selection.mode.set\",\"params\":{\"mode\":\"multiple\",\"compareBy\":\"id\",\"return\":\"id\"},\"isPositive\":true},{\"id\":\"set-compact-density\",\"request\":\"Make the list compact.\",\"operationId\":\"layout.density.set\",\"params\":{\"density\":\"compact\"},\"isPositive\":true},{\"id\":\"reject-missing-field-binding\",\"request\":\"Use missingField as the list title.\",\"operationId\":\"item.primaryText.set\",\"params\":{\"type\":\"text\",\"expr\":\"${item.missingField}\"},\"isPositive\":false},{\"id\":\"configure-list-skin\",\"request\":\"Use an elevated card skin with rounded corners.\",\"operationId\":\"skin.configure\",\"params\":{\"type\":\"elevated\",\"radius\":\"8px\",\"shadow\":\"var(--mat-sys-level2)\"},\"isPositive\":true},{\"id\":\"configure-list-toolbar\",\"request\":\"Show search by name and sort by created date.\",\"operationId\":\"ui.toolbar.configure\",\"params\":{\"showSearch\":true,\"searchField\":\"name\",\"showSort\":true,\"sortOptions\":[{\"label\":\"Newest\",\"value\":\"createdAt,desc\"}]},\"isPositive\":true},{\"id\":\"configure-accessibility-label\",\"request\":\"Set an accessible label for the customer list.\",\"operationId\":\"a11y.configure\",\"params\":{\"ariaLabel\":\"Customer list\"},\"isPositive\":true},{\"id\":\"configure-list-export\",\"request\":\"Enable CSV export for selected list rows.\",\"operationId\":\"export.configure\",\"params\":{\"enabled\":true,\"formats\":[\"csv\"],\"general\":{\"scope\":\"selected\",\"includeFields\":[\"id\",\"name\"]}},\"isPositive\":true},{\"id\":\"map-declarative-events\",\"request\":\"Map selection changes to the customerSelectionChanged event name.\",\"operationId\":\"events.map\",\"params\":{\"selectionChange\":\"customerSelectionChanged\"},\"isPositive\":true},{\"id\":\"configure-template-display\",\"request\":\"Move status chips to the top right and hide feature labels.\",\"operationId\":\"templating.display.configure\",\"params\":{\"statusPosition\":\"top-right\",\"featuresMode\":\"icons-only\"},\"isPositive\":true},{\"id\":\"set-feature-line\",\"request\":\"Show the amenities feature line.\",\"operationId\":\"templating.features.set\",\"params\":{\"features\":[{\"icon\":\"wifi\",\"expr\":\"${item.hasWifi}\"}]},\"isPositive\":true},{\"id\":\"configure-skeleton-count\",\"request\":\"Render six skeleton rows while loading.\",\"operationId\":\"templating.skeleton.configure\",\"params\":{\"count\":6},\"isPositive\":true},{\"id\":\"override-risk-slot\",\"request\":\"Show a warning icon in the risk slot for high-risk rows.\",\"operationId\":\"rules.slotOverride.upsert\",\"params\":{\"id\":\"high-risk-icon\",\"slot\":\"risk\",\"condition\":{\"==\":[{\"var\":\"row.risk\"},\"high\"]},\"template\":{\"type\":\"icon\",\"expr\":\"warning\",\"color\":\"warn\"}},\"isPositive\":true},{\"id\":\"set-empty-state\",\"request\":\"Show an empty employee message.\",\"operationId\":\"emptyState.set\",\"params\":{\"type\":\"text\",\"expr\":\"No employees found\"},\"isPositive\":true},{\"id\":\"bind-remote-resource\",\"request\":\"Bind the list to the employees resource.\",\"operationId\":\"data.resource.bind\",\"params\":{\"resourcePath\":\"employees\",\"sort\":[\"name,asc\"]},\"isPositive\":true},{\"id\":\"set-local-data\",\"request\":\"Use a local employee array for the list.\",\"operationId\":\"data.local.set\",\"params\":{\"data\":[{\"id\":1,\"name\":\"Ana\"}]},\"isPositive\":true},{\"id\":\"set-remote-query\",\"request\":\"Filter remote employees by active status.\",\"operationId\":\"data.query.set\",\"params\":{\"query\":{\"status\":\"active\"}},\"isPositive\":true},{\"id\":\"set-remote-sort\",\"request\":\"Sort remote employees by name ascending.\",\"operationId\":\"data.sort.set\",\"params\":{\"sort\":[\"name,asc\"]},\"isPositive\":true},{\"id\":\"configure-list-i18n\",\"request\":\"Use Brazilian Portuguese and BRL defaults.\",\"operationId\":\"i18n.configure\",\"params\":{\"locale\":\"pt-BR\",\"currency\":\"BRL\"},\"isPositive\":true},{\"id\":\"configure-row-layout-executive-slots\",\"request\":\"Use an executive row with identity, balance and actions columns.\",\"operationId\":\"layout.rowLayout.configure\",\"params\":{\"type\":\"grid\",\"columns\":[{\"slot\":\"identity\",\"width\":\"280px\"},{\"slot\":\"balance\",\"width\":\"1fr\"},{\"slot\":\"actions\",\"width\":\"auto\"}]},\"isPositive\":true},{\"id\":\"enable-inline-expansion\",\"request\":\"Allow expanding one row at a time using the expand icon.\",\"operationId\":\"interaction.expansion.configure\",\"params\":{\"expandable\":true,\"expandTrigger\":\"icon\",\"expandMode\":\"single\",\"expandPlacement\":\"expand\"},\"isPositive\":true},{\"id\":\"add-expansion-section\",\"request\":\"Add a detail expansion section backed by item details.\",\"operationId\":\"expansion.configure\",\"params\":{\"sections\":[{\"id\":\"details\",\"type\":\"metadata\",\"title\":\"Details\",\"itemsExpr\":\"${item.details}\"}]},\"isPositive\":true},{\"id\":\"style-high-risk-items\",\"request\":\"Highlight rows where risk is high.\",\"operationId\":\"rules.itemStyle.upsert\",\"params\":{\"id\":\"high-risk\",\"condition\":{\"==\":[{\"var\":\"row.risk\"},\"high\"]},\"class\":\"risk-high\"},\"isPositive\":true}]}",
|
|
6819
9279
|
"sourcePointer": "projects/praxis-list/src/lib/ai/praxis-list-authoring-manifest.ts",
|
|
@@ -6823,7 +9283,7 @@
|
|
|
6823
9283
|
"corpusVersion": "1.0.0"
|
|
6824
9284
|
},
|
|
6825
9285
|
{
|
|
6826
|
-
"chunkIndex":
|
|
9286
|
+
"chunkIndex": 50,
|
|
6827
9287
|
"chunkKind": "context_pack",
|
|
6828
9288
|
"content": "{\"componentId\":\"praxis-list\",\"chunkSection\":\"componentContext\",\"componentContext\":{\"version\":\"v1\",\"hints\":[\"Use actions[].id and templating.features[].expr as merge keys; avoid array indexes.\",\"Template expressions support only ${item.path} with simple pipes (bool/date/map/number).\",\"dataSource.data overrides resourcePath; prefer one or the other for clarity.\",\"layout.lines expects numeric values (1, 2, 3).\",\"DOC: Widget purpose: list/cards with selection, grouping, and templating.\",\"DOC: Host inputs: config (required) and listId (required); form is optional; enableCustomization is the canonical customization input.\",\"DOC: Minimal data source: dataSource.data (inline) or dataSource.resourcePath (API).\",\"DOC: Minimal rendering: set templating.primary.expr (label) or templating.secondary.expr.\"],\"optionsByPath\":{\"layout.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"list\",\"label\":\"List\"},{\"value\":\"cards\",\"label\":\"Cards\"},{\"value\":\"tiles\",\"label\":\"Tiles\"}]},\"layout.density\":{\"mode\":\"enum\",\"options\":[{\"value\":\"default\",\"label\":\"Default\"},{\"value\":\"comfortable\",\"label\":\"Comfortable\"},{\"value\":\"compact\",\"label\":\"Compact\"}]},\"layout.itemSpacing\":{\"mode\":\"enum\",\"options\":[{\"value\":\"none\",\"label\":\"None\"},{\"value\":\"tight\",\"label\":\"Tight\"},{\"value\":\"default\",\"label\":\"Default\"},{\"value\":\"relaxed\",\"label\":\"Relaxed\"}]},\"layout.lines\":{\"mode\":\"enum\",\"options\":[{\"value\":1,\"label\":\"1 line\"},{\"value\":2,\"label\":\"2 lines\"},{\"value\":3,\"label\":\"3 lines\"}]},\"layout.dividers\":{\"mode\":\"enum\",\"options\":[{\"value\":\"none\",\"label\":\"None\"},{\"value\":\"between\",\"label\":\"Between\"},{\"value\":\"all\",\"label\":\"All\"}]},\"layout.model\":{\"mode\":\"enum\",\"options\":[{\"value\":\"standard\",\"label\":\"Standard\"},{\"value\":\"media\",\"label\":\"Media\"},{\"value\":\"hotel\",\"label\":\"Hotel\"}]},\"selection.mode\":{\"mode\":\"enum\",\"options\":[{\"value\":\"none\",\"label\":\"None\"},{\"value\":\"single\",\"label\":\"Single\"},{\"value\":\"multiple\",\"label\":\"Multiple\"}]},\"selection.return\":{\"mode\":\"enum\",\"options\":[{\"value\":\"value\",\"label\":\"Value\"},{\"value\":\"item\",\"label\":\"Item\"},{\"value\":\"id\",\"label\":\"Id\"}]},\"skin.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"pill-soft\",\"label\":\"Pill soft\"},{\"value\":\"gradient-tile\",\"label\":\"Gradient tile\"},{\"value\":\"glass\",\"label\":\"Glass\"},{\"value\":\"elevated\",\"label\":\"Elevated\"},{\"value\":\"outline\",\"label\":\"Outline\"},{\"value\":\"flat\",\"label\":\"Flat\"},{\"value\":\"neumorphism\",\"label\":\"Neumorphism\"},{\"value\":\"custom\",\"label\":\"Custom\"}]},\"templating.leading.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"image\",\"label\":\"Image\"},{\"value\":\"chip\",\"label\":\"Chip\"},{\"value\":\"rating\",\"label\":\"Rating\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"},{\"value\":\"slot\",\"label\":\"Slot\"}]},\"templating.primary.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"}]},\"templating.secondary.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"}]},\"templating.meta.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"image\",\"label\":\"Image\"},{\"value\":\"chip\",\"label\":\"Chip\"},{\"value\":\"rating\",\"label\":\"Rating\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"},{\"value\":\"slot\",\"label\":\"Slot\"}]},\"templating.trailing.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"image\",\"label\":\"Image\"},{\"value\":\"chip\",\"label\":\"Chip\"},{\"value\":\"rating\",\"label\":\"Rating\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"},{\"value\":\"slot\",\"label\":\"Slot\"}]},\"templating.sectionHeader.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"image\",\"label\":\"Image\"},{\"value\":\"chip\",\"label\":\"Chip\"},{\"value\":\"rating\",\"label\":\"Rating\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"},{\"value\":\"slot\",\"label\":\"Slot\"}]},\"templating.emptyState.type\":{\"mode\":\"enum\",\"options\":[{\"value\":\"text\",\"label\":\"Text\"},{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"image\",\"label\":\"Image\"},{\"value\":\"chip\",\"label\":\"Chip\"},{\"value\":\"rating\",\"label\":\"Rating\"},{\"value\":\"currency\",\"label\":\"Currency\"},{\"value\":\"date\",\"label\":\"Date\"},{\"value\":\"html\",\"label\":\"HTML\"},{\"value\":\"slot\",\"label\":\"Slot\"}]},\"templating.leading.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.primary.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.secondary.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.meta.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.trailing.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.sectionHeader.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.emptyState.variant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"filled\",\"label\":\"Filled\"},{\"value\":\"outlined\",\"label\":\"Outlined\"}]},\"templating.metaPlacement\":{\"mode\":\"enum\",\"options\":[{\"value\":\"side\",\"label\":\"Side\"},{\"value\":\"line\",\"label\":\"Line\"}]},\"templating.statusPosition\":{\"mode\":\"enum\",\"options\":[{\"value\":\"inline\",\"label\":\"Inline\"},{\"value\":\"top-right\",\"label\":\"Top right\"}]},\"templating.meta.props.rating.max\":{\"mode\":\"suggested\",\"options\":[{\"value\":5,\"label\":\"5 estrelas\"},{\"value\":10,\"label\":\"10 pontos\"}]},\"templating.meta.props.rating.size\":{\"mode\":\"suggested\",\"options\":[{\"value\":12,\"label\":\"Compacto\"},{\"value\":16,\"label\":\"Padrão\"},{\"value\":20,\"label\":\"Destaque\"}]},\"templating.meta.props.rating.color\":{\"mode\":\"suggested\",\"options\":[{\"value\":\"primary\",\"label\":\"Primary\"},{\"value\":\"accent\",\"label\":\"Accent\"},{\"value\":\"warn\",\"label\":\"Warn\"},{\"value\":\"var(--md-sys-color-tertiary)\",\"label\":\"M3 Tertiary\"}]},\"templating.featuresMode\":{\"mode\":\"enum\",\"options\":[{\"value\":\"icons+labels\",\"label\":\"Icons + labels\"},{\"value\":\"icons-only\",\"label\":\"Icons only\"},{\"value\":\"labels-only\",\"label\":\"Labels only\"}]},\"actions[].kind\":{\"mode\":\"enum\",\"options\":[{\"value\":\"icon\",\"label\":\"Icon\"},{\"value\":\"button\",\"label\":\"Button\"}]},\"actions[].buttonVariant\":{\"mode\":\"enum\",\"options\":[{\"value\":\"stroked\",\"label\":\"Stroked\"},{\"value\":\"raised\",\"label\":\"Raised\"},{\"value\":\"flat\",\"label\":\"Flat\"}]},\"actions[].globalAction.[actionId]\":{\"mode\":\"suggested\",\"options\":[{\"value\":\"toast.success\",\"label\":\"Toast success\"},{\"value\":\"toast.error\",\"label\":\"Toast error\"},{\"value\":\"dialog.alert\",\"label\":\"Dialog alert\"},{\"value\":\"dialog.open\",\"label\":\"Dialog open\"},{\"value\":\"navigation.openExternal\",\"label\":\"Open external URL\"},{\"value\":\"navigation.openRoute\",\"label\":\"Open internal route\"},{\"value\":\"api.post\",\"label\":\"API POST\"},{\"value\":\"api.patch\",\"label\":\"API PATCH\"}]},\"actions[].globalAction.payloadExpr\":{\"mode\":\"expression\"}}}}",
|
|
6829
9289
|
"sourcePointer": "projects/praxis-list/src/lib/ai/list-context-pack.ts",
|
|
@@ -6833,7 +9293,7 @@
|
|
|
6833
9293
|
"corpusVersion": "1.0.0"
|
|
6834
9294
|
},
|
|
6835
9295
|
{
|
|
6836
|
-
"chunkIndex":
|
|
9296
|
+
"chunkIndex": 51,
|
|
6837
9297
|
"chunkKind": "context_pack",
|
|
6838
9298
|
"content": "{\"componentId\":\"praxis-list\",\"chunkSection\":\"componentContext.actionCatalog\",\"componentContext\":{\"actionCatalog\":[{\"id\":\"dataSource.resourcePath.set\",\"intentExamples\":[\"resource\",\"endpoint\",\"api\",\"path\"],\"patchTemplate\":{\"dataSource\":{\"resourcePath\":\"{{value}}\"}}},{\"id\":\"dataSource.sort.set\",\"intentExamples\":[\"sort\",\"order\",\"ordenar\"],\"patchTemplate\":{\"dataSource\":{\"sort\":[\"{{value}}\"]}}},{\"id\":\"layout.variant.set\",\"intentExamples\":[\"layout\",\"variant\",\"list\",\"cards\"],\"patchTemplate\":{\"layout\":{\"variant\":\"{{value}}\"}}},{\"id\":\"layout.variant.set.tiles\",\"intentExamples\":[\"tiles\",\"grid\",\"cards grid\",\"catalog\"],\"patchTemplate\":{\"layout\":{\"variant\":\"tiles\"}}},{\"id\":\"layout.variant.set.list\",\"intentExamples\":[\"list\",\"lista\",\"linha\"],\"patchTemplate\":{\"layout\":{\"variant\":\"list\"}}},{\"id\":\"layout.variant.set.cards\",\"intentExamples\":[\"cards\",\"card\",\"cartões\"],\"patchTemplate\":{\"layout\":{\"variant\":\"cards\"}}},{\"id\":\"layout.density.set\",\"intentExamples\":[\"density\",\"compact\",\"comfortable\"],\"patchTemplate\":{\"layout\":{\"density\":\"{{value}}\"}}},{\"id\":\"layout.density.compact\",\"intentExamples\":[\"compact\",\"dense\",\"mais itens\"],\"patchTemplate\":{\"layout\":{\"density\":\"compact\"}}},{\"id\":\"layout.density.comfortable\",\"intentExamples\":[\"comfortable\",\"confortável\",\"mais espaço\"],\"patchTemplate\":{\"layout\":{\"density\":\"comfortable\"}}},{\"id\":\"layout.lines.set.1\",\"intentExamples\":[\"lines\",\"1 line\",\"one line\"],\"patchTemplate\":{\"layout\":{\"lines\":1}}},{\"id\":\"layout.lines.set.2\",\"intentExamples\":[\"lines\",\"2 lines\",\"two lines\"],\"patchTemplate\":{\"layout\":{\"lines\":2}}},{\"id\":\"layout.lines.set.3\",\"intentExamples\":[\"lines\",\"3 lines\",\"three lines\"],\"patchTemplate\":{\"layout\":{\"lines\":3}}},{\"id\":\"layout.dividers.none\",\"intentExamples\":[\"no dividers\",\"sem divisores\"],\"patchTemplate\":{\"layout\":{\"dividers\":\"none\"}}},{\"id\":\"layout.dividers.between\",\"intentExamples\":[\"dividers\",\"separadores\",\"entre itens\"],\"patchTemplate\":{\"layout\":{\"dividers\":\"between\"}}},{\"id\":\"layout.dividers.set\",\"intentExamples\":[\"divider\",\"dividers\",\"separators\"],\"patchTemplate\":{\"layout\":{\"dividers\":\"{{value}}\"}}},{\"id\":\"layout.model.set\",\"intentExamples\":[\"model\",\"card style\"],\"patchTemplate\":{\"layout\":{\"model\":\"{{value}}\"}}},{\"id\":\"layout.groupBy.set\",\"intentExamples\":[\"group\",\"group by\",\"section\"],\"patchTemplate\":{\"layout\":{\"groupBy\":\"{{value}}\"}}},{\"id\":\"layout.groupBy.department\",\"intentExamples\":[\"department\",\"setor\",\"área\",\"group by department\"],\"patchTemplate\":{\"layout\":{\"groupBy\":\"department\",\"stickySectionHeader\":true},\"templating\":{\"sectionHeader\":{\"type\":\"chip\",\"expr\":\"${item.key}\",\"color\":\"primary\"}}}},{\"id\":\"layout.groupBy.status\",\"intentExamples\":[\"status group\",\"group by status\",\"agrupado por status\"],\"patchTemplate\":{\"layout\":{\"groupBy\":\"status\",\"stickySectionHeader\":true},\"templating\":{\"sectionHeader\":{\"type\":\"text\",\"expr\":\"${item.key}\"}}}},{\"id\":\"layout.groupBy.category\",\"intentExamples\":[\"category\",\"categoria\",\"group by category\"],\"patchTemplate\":{\"layout\":{\"groupBy\":\"category\",\"stickySectionHeader\":true},\"templating\":{\"sectionHeader\":{\"type\":\"chip\",\"expr\":\"${item.key}\",\"color\":\"accent\"}}}},{\"id\":\"layout.groupBy.date\",\"intentExamples\":[\"date group\",\"group by date\",\"agrupado por data\"],\"patchTemplate\":{\"layout\":{\"groupBy\":\"date\",\"stickySectionHeader\":true},\"templating\":{\"sectionHeader\":{\"type\":\"text\",\"expr\":\"${item.key|date:pt-BR:short}\"}}}},{\"id\":\"layout.stickyHeader.enable\",\"intentExamples\":[\"sticky\",\"section header\"],\"patchTemplate\":{\"layout\":{\"stickySectionHeader\":true}}},{\"id\":\"layout.stickyHeader.disable\",\"intentExamples\":[\"sticky\",\"section header\",\"disable\"],\"patchTemplate\":{\"layout\":{\"stickySectionHeader\":false}}},{\"id\":\"layout.pageSize.set.10\",\"intentExamples\":[\"page size\",\"pagination\",\"10\"],\"patchTemplate\":{\"layout\":{\"pageSize\":10}}},{\"id\":\"layout.pageSize.set.20\",\"intentExamples\":[\"page size\",\"pagination\",\"20\"],\"patchTemplate\":{\"layout\":{\"pageSize\":20}}},{\"id\":\"layout.pageSize.set.50\",\"intentExamples\":[\"page size\",\"pagination\",\"50\"],\"patchTemplate\":{\"layout\":{\"pageSize\":50}}},{\"id\":\"selection.mode.set\",\"intentExamples\":[\"selection\",\"select\",\"multi\",\"single\"],\"patchTemplate\":{\"selection\":{\"mode\":\"{{value}}\"}}},{\"id\":\"selection.mode.single\",\"intentExamples\":[\"single select\",\"seleção única\"],\"patchTemplate\":{\"selection\":{\"mode\":\"single\",\"return\":\"value\"}}},{\"id\":\"selection.mode.multiple\",\"intentExamples\":[\"multi select\",\"seleção múltipla\"],\"patchTemplate\":{\"selection\":{\"mode\":\"multiple\",\"return\":\"id\"}}},{\"id\":\"selection.compareBy.set\",\"intentExamples\":[\"compare\",\"key\",\"identity\"],\"patchTemplate\":{\"selection\":{\"compareBy\":\"{{value}}\"}}},{\"id\":\"selection.return.set\",\"intentExamples\":[\"return\",\"payload\",\"selection output\"],\"patchTemplate\":{\"selection\":{\"return\":\"{{value}}\"}}},{\"id\":\"skin.type.set\",\"intentExamples\":[\"skin\",\"theme\",\"style\"],\"patchTemplate\":{\"skin\":{\"type\":\"{{value}}\"}}},{\"id\":\"skin.glass\",\"intentExamples\":[\"glass\",\"vidro\",\"blur\"],\"patchTemplate\":{\"skin\":{\"type\":\"glass\",\"backdropBlur\":\"12px\",\"border\":\"1px solid var(--md-sys-color-outline-variant)\"}}},{\"id\":\"skin.gradient.tile\",\"intentExamples\":[\"gradient\",\"tile\",\"degradê\"],\"patchTemplate\":{\"skin\":{\"type\":\"gradient-tile\",\"gradient\":{\"from\":\"var(--md-sys-color-primary)\",\"to\":\"var(--md-sys-color-tertiary)\",\"angle\":135}}}},{\"id\":\"templating.primary.set\",\"intentExamples\":[\"primary\",\"title\",\"main text\"],\"patchTemplate\":{\"templating\":{\"primary\":{\"type\":\"{{params.type}}\",\"expr\":\"{{value}}\"}}}},{\"id\":\"templating.secondary.set\",\"intentExamples\":[\"secondary\",\"subtitle\",\"detail text\"],\"patchTemplate\":{\"templating\":{\"secondary\":{\"type\":\"{{params.type}}\",\"expr\":\"{{value}}\"}}}},{\"id\":\"templating.meta.set\",\"intentExamples\":[\"meta\",\"side text\"],\"patchTemplate\":{\"templating\":{\"meta\":{\"type\":\"{{params.type}}\",\"expr\":\"{{value}}\"}}}},{\"id\":\"templating.meta.rating.set\",\"intentExamples\":[\"rating\",\"stars\",\"nota\",\"score\"],\"patchTemplate\":{\"templating\":{\"meta\":{\"type\":\"rating\",\"expr\":\"${item.rating}\",\"props\":{\"rating\":{\"max\":5,\"size\":16,\"color\":\"primary\"}}}}}},{\"id\":\"templating.meta.currency.set\",\"intentExamples\":[\"price\",\"preço\",\"valor\",\"currency\"],\"patchTemplate\":{\"templating\":{\"meta\":{\"type\":\"currency\",\"expr\":\"${item.price}|BRL:pt-BR\"}}}},{\"id\":\"templating.trailing.status.chip\",\"intentExamples\":[\"status chip\",\"badge\",\"estado\"],\"patchTemplate\":{\"templating\":{\"trailing\":{\"type\":\"chip\",\"expr\":\"${item.status}\",\"color\":\"primary\"},\"statusPosition\":\"top-right\"}}},{\"id\":\"templating.trailing.status.icon\",\"intentExamples\":[\"status icon\",\"icone status\",\"state icon\"],\"patchTemplate\":{\"templating\":{\"trailing\":{\"type\":\"icon\",\"expr\":\"${item.status|map:OK=check_circle,ALERTA=warning,ERRO=error}\"},\"statusPosition\":\"top-right\"}}},{\"id\":\"templating.trailing.currency\",\"intentExamples\":[\"trailing price\",\"valor à direita\",\"preço à direita\"],\"patchTemplate\":{\"templating\":{\"trailing\":{\"type\":\"currency\",\"expr\":\"${item.price}|BRL:pt-BR\"}}}},{\"id\":\"templating.leading.avatar.image\",\"intentExamples\":[\"avatar\",\"foto\",\"imagem principal\"],\"patchTemplate\":{\"templating\":{\"leading\":{\"type\":\"image\",\"expr\":\"${item.imageUrl}\",\"imageAlt\":\"Imagem\"}}}},{\"id\":\"templating.leading.avatar.icon\",\"intentExamples\":[\"avatar icon\",\"icone pessoa\"],\"patchTemplate\":{\"templating\":{\"leading\":{\"type\":\"icon\",\"expr\":\"person\",\"color\":\"primary\"}}}},{\"id\":\"templating.features.add.wifi\",\"intentExamples\":[\"wifi\",\"amenities\",\"features\"],\"patchTemplate\":{\"templating\":{\"features\":[{\"icon\":\"wifi\",\"expr\":\"${item.hasWifi}\"}]}}},{\"id\":\"templating.features.mode.icons-only\",\"intentExamples\":[\"icons only\",\"somente ícones\",\"icons\"],\"patchTemplate\":{\"templating\":{\"featuresMode\":\"icons-only\"}}},{\"id\":\"templating.features.mode.labels-only\",\"intentExamples\":[\"labels only\",\"somente texto\",\"labels\"],\"patchTemplate\":{\"templating\":{\"featuresMode\":\"labels-only\"}}},{\"id\":\"templating.features.mode.icons-labels\",\"intentExamples\":[\"icons + labels\",\"ícones e texto\",\"icons labels\"],\"patchTemplate\":{\"templating\":{\"featuresMode\":\"icons+labels\"}}}]}}",
|
|
6839
9299
|
"sourcePointer": "projects/praxis-list/src/lib/ai/list-context-pack.ts",
|
|
@@ -6843,7 +9303,7 @@
|
|
|
6843
9303
|
"corpusVersion": "1.0.0"
|
|
6844
9304
|
},
|
|
6845
9305
|
{
|
|
6846
|
-
"chunkIndex":
|
|
9306
|
+
"chunkIndex": 52,
|
|
6847
9307
|
"chunkKind": "context_pack",
|
|
6848
9308
|
"content": "{\"componentId\":\"praxis-list\",\"chunkSection\":\"componentContext.actionCatalog\",\"componentContext\":{\"actionCatalog\":[{\"id\":\"templating.meta.placement.side\",\"intentExamples\":[\"meta side\",\"meta lateral\",\"meta direita\"],\"patchTemplate\":{\"templating\":{\"metaPlacement\":\"side\"}}},{\"id\":\"templating.meta.placement.line\",\"intentExamples\":[\"meta line\",\"meta abaixo\",\"meta na linha\"],\"patchTemplate\":{\"templating\":{\"metaPlacement\":\"line\"}}},{\"id\":\"layout.lines.compact\",\"intentExamples\":[\"1 line\",\"uma linha\",\"compact\"],\"patchTemplate\":{\"layout\":{\"lines\":1}}},{\"id\":\"layout.lines.standard\",\"intentExamples\":[\"2 lines\",\"duas linhas\",\"standard\"],\"patchTemplate\":{\"layout\":{\"lines\":2}}},{\"id\":\"layout.lines.rich\",\"intentExamples\":[\"3 lines\",\"três linhas\",\"rich\"],\"patchTemplate\":{\"layout\":{\"lines\":3}}},{\"id\":\"ui.search.enable\",\"intentExamples\":[\"search\",\"buscar\",\"pesquisa\"],\"patchTemplate\":{\"ui\":{\"showSearch\":true,\"searchField\":\"name\",\"searchPlaceholder\":\"Buscar\"}}},{\"id\":\"ui.sort.enable\",\"intentExamples\":[\"sort\",\"ordenar\",\"order\"],\"patchTemplate\":{\"ui\":{\"showSort\":true,\"sortOptions\":[\"name,asc\",\"name,desc\"]}}},{\"id\":\"ui.range.enable\",\"intentExamples\":[\"range\",\"faixa\",\"x-y\"],\"patchTemplate\":{\"ui\":{\"showRange\":true}}},{\"id\":\"actions.add.edit\",\"intentExamples\":[\"edit action\",\"editar\",\"ação editar\"],\"patchTemplate\":{\"actions\":[{\"id\":\"edit\",\"icon\":\"edit\",\"label\":\"Editar\"}]}},{\"id\":\"actions.add.delete\",\"intentExamples\":[\"delete action\",\"remover\",\"excluir\"],\"patchTemplate\":{\"actions\":[{\"id\":\"delete\",\"icon\":\"delete\",\"label\":\"Excluir\",\"color\":\"warn\"}]}},{\"id\":\"actions.add.details.button\",\"intentExamples\":[\"details button\",\"detalhes\",\"ver mais\"],\"patchTemplate\":{\"actions\":[{\"id\":\"details\",\"kind\":\"button\",\"buttonVariant\":\"stroked\",\"label\":\"Detalhes\"}]}},{\"id\":\"templating.trailing.set\",\"intentExamples\":[\"trailing\",\"end\",\"right\"],\"patchTemplate\":{\"templating\":{\"trailing\":{\"type\":\"{{params.type}}\",\"expr\":\"{{value}}\"}}}},{\"id\":\"templating.features.add\",\"intentExamples\":[\"features\",\"amenities\",\"icons\"],\"patchTemplate\":{\"templating\":{\"features\":[{\"icon\":\"{{params.icon}}\",\"expr\":\"{{value}}\"}]}}},{\"id\":\"templating.features.enable\",\"intentExamples\":[\"features\",\"show features\",\"enable features\"],\"patchTemplate\":{\"templating\":{\"featuresVisible\":true}}},{\"id\":\"templating.features.disable\",\"intentExamples\":[\"features\",\"hide features\",\"disable features\"],\"patchTemplate\":{\"templating\":{\"featuresVisible\":false}}},{\"id\":\"templating.metaPlacement.set\",\"intentExamples\":[\"meta placement\",\"meta position\"],\"patchTemplate\":{\"templating\":{\"metaPlacement\":\"{{value}}\"}}},{\"id\":\"templating.statusPosition.set\",\"intentExamples\":[\"status position\",\"badge position\"],\"patchTemplate\":{\"templating\":{\"statusPosition\":\"{{value}}\"}}},{\"id\":\"action.add\",\"intentExamples\":[\"add action\",\"action\",\"button\",\"icon action\"],\"safetyNotes\":\"showIf deve ser objeto Json Logic quando informado. O placeholder textual e apenas molde de prompt; nao gere DSL textual nem publique string como contrato.\",\"patchTemplate\":{\"actions\":[{\"id\":\"{{target}}\",\"icon\":\"{{params.icon}}\",\"label\":\"{{value}}\",\"kind\":\"{{params.kind}}\",\"buttonVariant\":\"{{params.buttonVariant}}\",\"showIf\":\"{{params.showIf}}\"}]}},{\"id\":\"action.label.set\",\"intentExamples\":[\"action label\",\"rename action\"],\"patchTemplate\":{\"actions\":[{\"id\":\"{{target}}\",\"label\":\"{{value}}\"}]}},{\"id\":\"action.icon.set\",\"intentExamples\":[\"action icon\",\"icon\"],\"patchTemplate\":{\"actions\":[{\"id\":\"{{target}}\",\"icon\":\"{{value}}\"}]}},{\"id\":\"action.kind.set\",\"intentExamples\":[\"action kind\",\"button\",\"icon\"],\"patchTemplate\":{\"actions\":[{\"id\":\"{{target}}\",\"kind\":\"{{value}}\"}]}},{\"id\":\"action.showIf.set\",\"intentExamples\":[\"visible when\",\"show if\",\"condition\"],\"safetyNotes\":\"Forneca showIf como objeto Json Logic no contexto row, por exemplo {\\\"==\\\": [{\\\"var\\\": \\\"row.status\\\"}, \\\"done\\\"]}; nao use DSL textual.\",\"patchTemplate\":{\"actions\":[{\"id\":\"{{target}}\",\"showIf\":\"{{value}}\"}]}},{\"id\":\"ui.search.enable\",\"intentExamples\":[\"search\",\"enable search\",\"show search\"],\"patchTemplate\":{\"ui\":{\"showSearch\":true}}},{\"id\":\"ui.search.disable\",\"intentExamples\":[\"search\",\"disable search\",\"hide search\"],\"patchTemplate\":{\"ui\":{\"showSearch\":false}}},{\"id\":\"ui.searchField.set\",\"intentExamples\":[\"search field\",\"search by\"],\"patchTemplate\":{\"ui\":{\"searchField\":\"{{value}}\"}}},{\"id\":\"ui.sort.enable\",\"intentExamples\":[\"sort\",\"enable sort\",\"show sort\"],\"patchTemplate\":{\"ui\":{\"showSort\":true}}},{\"id\":\"ui.sort.disable\",\"intentExamples\":[\"sort\",\"disable sort\",\"hide sort\"],\"patchTemplate\":{\"ui\":{\"showSort\":false}}}]}}",
|
|
6849
9309
|
"sourcePointer": "projects/praxis-list/src/lib/ai/list-context-pack.ts",
|
|
@@ -6853,7 +9313,7 @@
|
|
|
6853
9313
|
"corpusVersion": "1.0.0"
|
|
6854
9314
|
},
|
|
6855
9315
|
{
|
|
6856
|
-
"chunkIndex":
|
|
9316
|
+
"chunkIndex": 53,
|
|
6857
9317
|
"chunkKind": "context_pack",
|
|
6858
9318
|
"content": "{\"componentId\":\"praxis-list\",\"chunkSection\":\"componentContext\",\"componentContext\":{\"fieldResolvers\":{\"actions[]\":[\"id\",\"label\"],\"dataSource.resourcePath\":[],\"layout.groupBy\":[],\"ui.searchField\":[],\"selection.compareBy\":[]}}}",
|
|
6859
9319
|
"sourcePointer": "projects/praxis-list/src/lib/ai/list-context-pack.ts",
|
|
@@ -6863,7 +9323,7 @@
|
|
|
6863
9323
|
"corpusVersion": "1.0.0"
|
|
6864
9324
|
},
|
|
6865
9325
|
{
|
|
6866
|
-
"chunkIndex":
|
|
9326
|
+
"chunkIndex": 54,
|
|
6867
9327
|
"chunkKind": "recipe",
|
|
6868
9328
|
"content": "{\"_comment\":\"Variacao cards + skin para o Praxis List (PraxisListConfig).\",\"templateMeta\":{\"registryKey\":\"praxis-list\",\"variantId\":\"cards\",\"useWhen\":\"List layout in cards mode with visual skin.\",\"examplePrompts\":[\"create a card list layout\",\"use cards view for the list\"]},\"config\":{\"dataSource\":{\"resourcePath\":\"api/products\",\"query\":{\"status\":\"active\"},\"sort\":[\"updatedAt,desc\"]},\"layout\":{\"variant\":\"cards\",\"density\":\"compact\",\"lines\":2,\"model\":\"media\",\"pageSize\":12},\"skin\":{\"type\":\"glass\",\"radius\":\"16px\",\"backdropBlur\":\"10px\"},\"templating\":{\"leading\":{\"type\":\"image\",\"expr\":\"${item.coverUrl}\",\"imageAlt\":\"Capa\"},\"primary\":{\"type\":\"text\",\"expr\":\"${item.name}\"},\"secondary\":{\"type\":\"text\",\"expr\":\"${item.category}\"},\"meta\":{\"type\":\"date\",\"expr\":\"${item.updatedAt}|pt-BR:short\"},\"metaPlacement\":\"line\",\"metaPrefixIcon\":\"schedule\",\"trailing\":{\"type\":\"icon\",\"expr\":\"${item.status|map:active=check_circle,inactive=cancel,pending=hourglass_top}\"},\"statusPosition\":\"top-right\",\"iconColorMap\":{\"active\":\"primary\",\"inactive\":\"warn\",\"pending\":\"accent\"},\"features\":[{\"icon\":\"star\",\"expr\":\"Nota: ${item.rating|number:pt-BR}\"},{\"icon\":\"sell\",\"expr\":\"Preco: ${item.price|number:pt-BR}\"}],\"featuresMode\":\"icons+labels\",\"emptyState\":{\"type\":\"text\",\"expr\":\"Nenhum produto encontrado\"},\"skeleton\":{\"count\":6}},\"actions\":[{\"id\":\"open\",\"label\":\"Abrir\",\"icon\":\"open_in_new\",\"kind\":\"button\",\"buttonVariant\":\"stroked\"},{\"id\":\"favorite\",\"label\":\"Favoritar\",\"icon\":\"favorite\",\"color\":\"accent\",\"kind\":\"icon\"}],\"ui\":{\"showSearch\":true,\"searchField\":\"name\",\"searchPlaceholder\":\"Buscar produto\",\"showSort\":true,\"sortOptions\":[{\"label\":\"Recentes\",\"value\":\"updatedAt,desc\"},{\"label\":\"Preco (maior)\",\"value\":\"price,desc\"},{\"label\":\"Preco (menor)\",\"value\":\"price,asc\"}],\"showRange\":true},\"i18n\":{\"locale\":\"pt-BR\",\"currency\":\"BRL\"},\"a11y\":{\"ariaLabel\":\"Lista de produtos em cards\"}}}",
|
|
6869
9329
|
"sourcePointer": "examples/ai-recipes/praxis-list-cards.json",
|
|
@@ -6873,7 +9333,7 @@
|
|
|
6873
9333
|
"corpusVersion": "1.0.0"
|
|
6874
9334
|
},
|
|
6875
9335
|
{
|
|
6876
|
-
"chunkIndex":
|
|
9336
|
+
"chunkIndex": 55,
|
|
6877
9337
|
"chunkKind": "recipe",
|
|
6878
9338
|
"content": "{\"_comment\":\"Receita completa de configuração para o Praxis List baseada no PraxisListConfig real, com features + metaPlacement.\",\"templateMeta\":{\"registryKey\":\"praxis-list\",\"variantId\":\"base\",\"useWhen\":\"Base list configuration.\",\"examplePrompts\":[\"create a list with selection\",\"configure list layout and item templates\"]},\"config\":{\"dataSource\":{\"resourcePath\":\"api/products\",\"sort\":[\"name,asc\"]},\"selection\":{\"mode\":\"multiple\",\"compareBy\":\"id\",\"return\":\"id\"},\"layout\":{\"variant\":\"list\",\"density\":\"comfortable\",\"lines\":3,\"dividers\":\"between\",\"pageSize\":20},\"templating\":{\"leading\":{\"type\":\"icon\",\"expr\":\"inventory_2\"},\"primary\":{\"type\":\"text\",\"expr\":\"${item.name}\"},\"secondary\":{\"type\":\"text\",\"expr\":\"${item.category}\"},\"meta\":{\"type\":\"date\",\"expr\":\"${item.updatedAt}|pt-BR:short\"},\"metaPlacement\":\"line\",\"metaPrefixIcon\":\"schedule\",\"trailing\":{\"type\":\"chip\",\"expr\":\"${item.status}\"},\"chipColorMap\":{\"active\":\"primary\",\"inactive\":\"warn\"},\"chipLabelMap\":{\"active\":\"Ativo\",\"inactive\":\"Inativo\"},\"features\":[{\"icon\":\"inventory_2\",\"expr\":\"Estoque: ${item.stock|number:pt-BR}\"},{\"icon\":\"local_shipping\",\"expr\":\"${item.shipping|map:free=Frete grátis,paid=Frete pago}\"}],\"featuresVisible\":true,\"featuresMode\":\"icons+labels\",\"emptyState\":{\"type\":\"text\",\"expr\":\"Nenhum produto encontrado\"}},\"actions\":[{\"id\":\"edit\",\"label\":\"Editar\",\"icon\":\"edit\"},{\"id\":\"delete\",\"label\":\"Excluir\",\"icon\":\"delete\",\"color\":\"warn\"}],\"ui\":{\"showSearch\":true,\"searchField\":\"name\",\"searchPlaceholder\":\"Buscar produto\",\"showSort\":true,\"sortOptions\":[{\"label\":\"Nome (A-Z)\",\"value\":\"name,asc\"},{\"label\":\"Nome (Z-A)\",\"value\":\"name,desc\"},{\"label\":\"Mais caros\",\"value\":\"price,desc\"}],\"showRange\":true},\"i18n\":{\"locale\":\"pt-BR\",\"currency\":\"BRL\"},\"a11y\":{\"ariaLabel\":\"Lista de produtos\"}}}",
|
|
6879
9339
|
"sourcePointer": "examples/ai-recipes/praxis-list.json",
|