webcore.map 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. [
  2. {
  3. "tag" : "input",
  4. "attrs" : { "type" : "text" },
  5. "class" : "TWebEdit"
  6. },
  7. {
  8. "tag" : "input",
  9. "attrs" : { "type" : "checkbox" },
  10. "class" : "TWebCheckBox"
  11. },
  12. {
  13. "tag" : "input",
  14. "attrs" : { "type" : "radio" },
  15. "class" : "TWebRadioButton"
  16. },
  17. {
  18. "tag" : "input",
  19. "attrs" : { "type" : "submit" },
  20. "class" : "TWebButton"
  21. },
  22. {
  23. "tag" : "input",
  24. "attrs" : { "type" : "reset" },
  25. "class" : "TWebButton"
  26. },
  27. {
  28. "tag" : "input",
  29. "attrs" : { "type" : "image" },
  30. "class" : "TWebButton"
  31. },
  32. {
  33. "tag" : "input",
  34. "attrs" : { "type" : "button" },
  35. "class" : "TWebButton"
  36. },
  37. {
  38. "tag" : "input",
  39. "class" : "TWebEdit"
  40. },
  41. {
  42. "tag" : "textarea",
  43. "class" : "TWebMemo"
  44. },
  45. {
  46. "tag" : "select",
  47. "attrs" : { "multiple" : "" },
  48. "class" : "TWebComboBox"
  49. },
  50. {
  51. "tag" : "select",
  52. "class" : "TWebComboBox"
  53. },
  54. {
  55. "tag" : "div",
  56. "class" : "TWebHTMLDiv"
  57. },
  58. {
  59. "tag" : "span",
  60. "class" : "TWebHTMLSpan"
  61. },
  62. {
  63. "tag" : "a",
  64. "class" : "TWebHTMLAnchor"
  65. },
  66. {
  67. "tag" : "form",
  68. "class" : "TWebHTMLForm"
  69. },
  70. {
  71. "tag" : "button",
  72. "class" : "TWebButton"
  73. },
  74. {
  75. "tag" : "small",
  76. "class" : ""
  77. }
  78. ]