@rxap/schematic-angular 16.2.0-dev.43 → 16.2.0-dev.45

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.
Files changed (28) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +1 -1
  3. package/package.json +8 -8
  4. package/src/lib/data-grid-item.js +9 -2
  5. package/src/lib/data-grid-item.js.map +1 -1
  6. package/src/schema.json +65 -23
  7. package/src/schematics/accordion/accordion-component/index.d.ts +2 -1
  8. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  9. package/src/schematics/accordion/accordion-component/schema.json +65 -23
  10. package/src/schematics/accordion/accordion-item-component/schema.json +65 -23
  11. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +65 -23
  12. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +65 -23
  13. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +65 -23
  14. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +65 -23
  15. package/src/schematics/data-grid-component/schema.json +65 -23
  16. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +65 -23
  17. package/src/schematics/form/control/select-form-control/schema.json +65 -23
  18. package/src/schematics/form/control/table-select-form-control/schema.json +65 -23
  19. package/src/schematics/form/form-array/schema.json +65 -23
  20. package/src/schematics/form/form-component/schema.json +65 -23
  21. package/src/schematics/form/form-control/schema.json +65 -23
  22. package/src/schematics/form/form-definition/schema.json +65 -23
  23. package/src/schematics/form/form-group/schema.json +65 -23
  24. package/src/schematics/table/action/form-table-action/schema.json +65 -23
  25. package/src/schematics/table/header-button/form-table-header-button/schema.json +65 -23
  26. package/src/schematics/table/table-component/schema.json +65 -23
  27. package/src/schematics/table/tree-table-component/schema.json +65 -23
  28. package/src/schematics/upstream.schema.json +62 -23
@@ -437,38 +437,80 @@
437
437
  "type": "string"
438
438
  },
439
439
  "mapper": {
440
- "type": "object",
441
- "properties": {
442
- "pageIndex": {
443
- "type": "string"
444
- },
445
- "pageSize": {
446
- "type": "string"
447
- },
448
- "sortBy": {
449
- "type": "string"
450
- },
451
- "sortDirection": {
452
- "type": "string"
453
- },
454
- "list": {
455
- "type": "string"
456
- },
457
- "total": {
458
- "type": "string"
440
+ "oneOf": [
441
+ {
442
+ "type": "object",
443
+ "properties": {
444
+ "kind": {
445
+ "type": "string",
446
+ "const": "paged"
447
+ },
448
+ "pageIndex": {
449
+ "type": "string"
450
+ },
451
+ "pageSize": {
452
+ "type": "string"
453
+ },
454
+ "sortBy": {
455
+ "type": "string"
456
+ },
457
+ "sortDirection": {
458
+ "type": "string"
459
+ },
460
+ "list": {
461
+ "type": "string"
462
+ },
463
+ "total": {
464
+ "type": "string"
465
+ },
466
+ "filter": {
467
+ "type": "object",
468
+ "properties": {
469
+ "eq": {
470
+ "type": "string"
471
+ },
472
+ "join": {
473
+ "type": "string"
474
+ }
475
+ }
476
+ }
477
+ }
459
478
  },
460
- "filter": {
479
+ {
461
480
  "type": "object",
462
481
  "properties": {
463
- "eq": {
482
+ "kind": {
483
+ "type": "string",
484
+ "const": "options"
485
+ },
486
+ "toFunction": {
487
+ "type": "string",
488
+ "enum": [
489
+ "ToOptions",
490
+ "ToOptionsFromObject"
491
+ ]
492
+ },
493
+ "toValue": {
464
494
  "type": "string"
465
495
  },
466
- "join": {
496
+ "toDisplay": {
497
+ "type": "string"
498
+ }
499
+ }
500
+ },
501
+ {
502
+ "type": "object",
503
+ "properties": {
504
+ "kind": {
505
+ "type": "string",
506
+ "const": "resolve"
507
+ },
508
+ "value": {
467
509
  "type": "string"
468
510
  }
469
511
  }
470
512
  }
471
- }
513
+ ]
472
514
  }
473
515
  },
474
516
  "required": [
@@ -904,38 +904,80 @@
904
904
  "type": "string"
905
905
  },
906
906
  "mapper": {
907
- "type": "object",
908
- "properties": {
909
- "pageIndex": {
910
- "type": "string"
911
- },
912
- "pageSize": {
913
- "type": "string"
914
- },
915
- "sortBy": {
916
- "type": "string"
917
- },
918
- "sortDirection": {
919
- "type": "string"
920
- },
921
- "list": {
922
- "type": "string"
923
- },
924
- "total": {
925
- "type": "string"
907
+ "oneOf": [
908
+ {
909
+ "type": "object",
910
+ "properties": {
911
+ "kind": {
912
+ "type": "string",
913
+ "const": "paged"
914
+ },
915
+ "pageIndex": {
916
+ "type": "string"
917
+ },
918
+ "pageSize": {
919
+ "type": "string"
920
+ },
921
+ "sortBy": {
922
+ "type": "string"
923
+ },
924
+ "sortDirection": {
925
+ "type": "string"
926
+ },
927
+ "list": {
928
+ "type": "string"
929
+ },
930
+ "total": {
931
+ "type": "string"
932
+ },
933
+ "filter": {
934
+ "type": "object",
935
+ "properties": {
936
+ "eq": {
937
+ "type": "string"
938
+ },
939
+ "join": {
940
+ "type": "string"
941
+ }
942
+ }
943
+ }
944
+ }
926
945
  },
927
- "filter": {
946
+ {
928
947
  "type": "object",
929
948
  "properties": {
930
- "eq": {
949
+ "kind": {
950
+ "type": "string",
951
+ "const": "options"
952
+ },
953
+ "toFunction": {
954
+ "type": "string",
955
+ "enum": [
956
+ "ToOptions",
957
+ "ToOptionsFromObject"
958
+ ]
959
+ },
960
+ "toValue": {
931
961
  "type": "string"
932
962
  },
933
- "join": {
963
+ "toDisplay": {
964
+ "type": "string"
965
+ }
966
+ }
967
+ },
968
+ {
969
+ "type": "object",
970
+ "properties": {
971
+ "kind": {
972
+ "type": "string",
973
+ "const": "resolve"
974
+ },
975
+ "value": {
934
976
  "type": "string"
935
977
  }
936
978
  }
937
979
  }
938
- }
980
+ ]
939
981
  }
940
982
  },
941
983
  "required": [
@@ -941,38 +941,80 @@
941
941
  "type": "string"
942
942
  },
943
943
  "mapper": {
944
- "type": "object",
945
- "properties": {
946
- "pageIndex": {
947
- "type": "string"
948
- },
949
- "pageSize": {
950
- "type": "string"
951
- },
952
- "sortBy": {
953
- "type": "string"
954
- },
955
- "sortDirection": {
956
- "type": "string"
957
- },
958
- "list": {
959
- "type": "string"
960
- },
961
- "total": {
962
- "type": "string"
944
+ "oneOf": [
945
+ {
946
+ "type": "object",
947
+ "properties": {
948
+ "kind": {
949
+ "type": "string",
950
+ "const": "paged"
951
+ },
952
+ "pageIndex": {
953
+ "type": "string"
954
+ },
955
+ "pageSize": {
956
+ "type": "string"
957
+ },
958
+ "sortBy": {
959
+ "type": "string"
960
+ },
961
+ "sortDirection": {
962
+ "type": "string"
963
+ },
964
+ "list": {
965
+ "type": "string"
966
+ },
967
+ "total": {
968
+ "type": "string"
969
+ },
970
+ "filter": {
971
+ "type": "object",
972
+ "properties": {
973
+ "eq": {
974
+ "type": "string"
975
+ },
976
+ "join": {
977
+ "type": "string"
978
+ }
979
+ }
980
+ }
981
+ }
963
982
  },
964
- "filter": {
983
+ {
965
984
  "type": "object",
966
985
  "properties": {
967
- "eq": {
986
+ "kind": {
987
+ "type": "string",
988
+ "const": "options"
989
+ },
990
+ "toFunction": {
991
+ "type": "string",
992
+ "enum": [
993
+ "ToOptions",
994
+ "ToOptionsFromObject"
995
+ ]
996
+ },
997
+ "toValue": {
968
998
  "type": "string"
969
999
  },
970
- "join": {
1000
+ "toDisplay": {
1001
+ "type": "string"
1002
+ }
1003
+ }
1004
+ },
1005
+ {
1006
+ "type": "object",
1007
+ "properties": {
1008
+ "kind": {
1009
+ "type": "string",
1010
+ "const": "resolve"
1011
+ },
1012
+ "value": {
971
1013
  "type": "string"
972
1014
  }
973
1015
  }
974
1016
  }
975
- }
1017
+ ]
976
1018
  }
977
1019
  },
978
1020
  "required": [
@@ -758,38 +758,80 @@
758
758
  "type": "string"
759
759
  },
760
760
  "mapper": {
761
- "type": "object",
762
- "properties": {
763
- "pageIndex": {
764
- "type": "string"
765
- },
766
- "pageSize": {
767
- "type": "string"
768
- },
769
- "sortBy": {
770
- "type": "string"
771
- },
772
- "sortDirection": {
773
- "type": "string"
774
- },
775
- "list": {
776
- "type": "string"
777
- },
778
- "total": {
779
- "type": "string"
761
+ "oneOf": [
762
+ {
763
+ "type": "object",
764
+ "properties": {
765
+ "kind": {
766
+ "type": "string",
767
+ "const": "paged"
768
+ },
769
+ "pageIndex": {
770
+ "type": "string"
771
+ },
772
+ "pageSize": {
773
+ "type": "string"
774
+ },
775
+ "sortBy": {
776
+ "type": "string"
777
+ },
778
+ "sortDirection": {
779
+ "type": "string"
780
+ },
781
+ "list": {
782
+ "type": "string"
783
+ },
784
+ "total": {
785
+ "type": "string"
786
+ },
787
+ "filter": {
788
+ "type": "object",
789
+ "properties": {
790
+ "eq": {
791
+ "type": "string"
792
+ },
793
+ "join": {
794
+ "type": "string"
795
+ }
796
+ }
797
+ }
798
+ }
780
799
  },
781
- "filter": {
800
+ {
782
801
  "type": "object",
783
802
  "properties": {
784
- "eq": {
803
+ "kind": {
804
+ "type": "string",
805
+ "const": "options"
806
+ },
807
+ "toFunction": {
808
+ "type": "string",
809
+ "enum": [
810
+ "ToOptions",
811
+ "ToOptionsFromObject"
812
+ ]
813
+ },
814
+ "toValue": {
785
815
  "type": "string"
786
816
  },
787
- "join": {
817
+ "toDisplay": {
818
+ "type": "string"
819
+ }
820
+ }
821
+ },
822
+ {
823
+ "type": "object",
824
+ "properties": {
825
+ "kind": {
826
+ "type": "string",
827
+ "const": "resolve"
828
+ },
829
+ "value": {
788
830
  "type": "string"
789
831
  }
790
832
  }
791
833
  }
792
- }
834
+ ]
793
835
  }
794
836
  },
795
837
  "required": [
@@ -916,38 +916,80 @@
916
916
  "type": "string"
917
917
  },
918
918
  "mapper": {
919
- "type": "object",
920
- "properties": {
921
- "pageIndex": {
922
- "type": "string"
923
- },
924
- "pageSize": {
925
- "type": "string"
926
- },
927
- "sortBy": {
928
- "type": "string"
929
- },
930
- "sortDirection": {
931
- "type": "string"
932
- },
933
- "list": {
934
- "type": "string"
935
- },
936
- "total": {
937
- "type": "string"
919
+ "oneOf": [
920
+ {
921
+ "type": "object",
922
+ "properties": {
923
+ "kind": {
924
+ "type": "string",
925
+ "const": "paged"
926
+ },
927
+ "pageIndex": {
928
+ "type": "string"
929
+ },
930
+ "pageSize": {
931
+ "type": "string"
932
+ },
933
+ "sortBy": {
934
+ "type": "string"
935
+ },
936
+ "sortDirection": {
937
+ "type": "string"
938
+ },
939
+ "list": {
940
+ "type": "string"
941
+ },
942
+ "total": {
943
+ "type": "string"
944
+ },
945
+ "filter": {
946
+ "type": "object",
947
+ "properties": {
948
+ "eq": {
949
+ "type": "string"
950
+ },
951
+ "join": {
952
+ "type": "string"
953
+ }
954
+ }
955
+ }
956
+ }
938
957
  },
939
- "filter": {
958
+ {
940
959
  "type": "object",
941
960
  "properties": {
942
- "eq": {
961
+ "kind": {
962
+ "type": "string",
963
+ "const": "options"
964
+ },
965
+ "toFunction": {
966
+ "type": "string",
967
+ "enum": [
968
+ "ToOptions",
969
+ "ToOptionsFromObject"
970
+ ]
971
+ },
972
+ "toValue": {
943
973
  "type": "string"
944
974
  },
945
- "join": {
975
+ "toDisplay": {
976
+ "type": "string"
977
+ }
978
+ }
979
+ },
980
+ {
981
+ "type": "object",
982
+ "properties": {
983
+ "kind": {
984
+ "type": "string",
985
+ "const": "resolve"
986
+ },
987
+ "value": {
946
988
  "type": "string"
947
989
  }
948
990
  }
949
991
  }
950
- }
992
+ ]
951
993
  }
952
994
  },
953
995
  "required": [
@@ -904,38 +904,80 @@
904
904
  "type": "string"
905
905
  },
906
906
  "mapper": {
907
- "type": "object",
908
- "properties": {
909
- "pageIndex": {
910
- "type": "string"
911
- },
912
- "pageSize": {
913
- "type": "string"
914
- },
915
- "sortBy": {
916
- "type": "string"
917
- },
918
- "sortDirection": {
919
- "type": "string"
920
- },
921
- "list": {
922
- "type": "string"
923
- },
924
- "total": {
925
- "type": "string"
907
+ "oneOf": [
908
+ {
909
+ "type": "object",
910
+ "properties": {
911
+ "kind": {
912
+ "type": "string",
913
+ "const": "paged"
914
+ },
915
+ "pageIndex": {
916
+ "type": "string"
917
+ },
918
+ "pageSize": {
919
+ "type": "string"
920
+ },
921
+ "sortBy": {
922
+ "type": "string"
923
+ },
924
+ "sortDirection": {
925
+ "type": "string"
926
+ },
927
+ "list": {
928
+ "type": "string"
929
+ },
930
+ "total": {
931
+ "type": "string"
932
+ },
933
+ "filter": {
934
+ "type": "object",
935
+ "properties": {
936
+ "eq": {
937
+ "type": "string"
938
+ },
939
+ "join": {
940
+ "type": "string"
941
+ }
942
+ }
943
+ }
944
+ }
926
945
  },
927
- "filter": {
946
+ {
928
947
  "type": "object",
929
948
  "properties": {
930
- "eq": {
949
+ "kind": {
950
+ "type": "string",
951
+ "const": "options"
952
+ },
953
+ "toFunction": {
954
+ "type": "string",
955
+ "enum": [
956
+ "ToOptions",
957
+ "ToOptionsFromObject"
958
+ ]
959
+ },
960
+ "toValue": {
931
961
  "type": "string"
932
962
  },
933
- "join": {
963
+ "toDisplay": {
964
+ "type": "string"
965
+ }
966
+ }
967
+ },
968
+ {
969
+ "type": "object",
970
+ "properties": {
971
+ "kind": {
972
+ "type": "string",
973
+ "const": "resolve"
974
+ },
975
+ "value": {
934
976
  "type": "string"
935
977
  }
936
978
  }
937
979
  }
938
- }
980
+ ]
939
981
  }
940
982
  },
941
983
  "required": [