You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

contracts.js 984B

123456789101112131415161718192021222324252627
  1. import { Param } from "./parameter";
  2. const contracts = () =>
  3. {
  4. // var parametarsFiles = readeFiles('/parameters');
  5. // parametarsFiles.map(p => new Param(p));
  6. return [
  7. new Param("br-size",["p","span"]),
  8. new Param("br-shownumberrows",["table"]),
  9. new Param("br-removerow",["table"]),
  10. new Param("br-removeheader",["table"]),
  11. new Param("br-removecolumn",["table"]),
  12. new Param("br-removetablestyles",["table"]),
  13. new Param("br-hide",["table","p","span","h5"]),
  14. new Param("br-color",["h1","p","h4"]),
  15. new Param("br-bordercolor",["table","div","p"]),
  16. new Param("br-headereverypage",["p","img"]),
  17. new Param("br-headerfirstpageonly",["table"]),
  18. new Param("br-landscapetable",["table"]),
  19. new Param("br-transformrotate",["div", "table"]),
  20. new Param("br-isolatedlandscape",["div", "table"]),
  21. new Param("br-hidechildren",["div"])
  22. ];
  23. }
  24. export default contracts;