not really known
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.

65 lines
3.4 KiB

  1. //* @protected
  2. // This is an in-progress design description of the Onyx controls for use in the Ares designer tool.
  3. Palette.model.push(
  4. {name: "onyx", items: [
  5. {name: "onyx.Button", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  6. inline: {content: "onyx.Button", kind: "onyx.Button"},
  7. config: {content: "$name", isContainer: true, kind: "onyx.Button"}
  8. },
  9. {name: "onyx.InputDecorator", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  10. inline: {kind: "onyx.InputDecorator", components: [
  11. {kind: "Input", placeholder: "Enter text here"}
  12. ]},
  13. config: {kind: "onyx.InputDecorator", components: [
  14. {kind: "Input", placeholder: "Enter text here"}
  15. ]}
  16. },
  17. {name: "onyx.Input", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  18. inline: {value: "onyx.Input", kind: "onyx.Input"},
  19. config: {kind: "onyx.Input"}
  20. },
  21. {name: "onyx.ToggleButton", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  22. inline: {kind: "onyx.ToggleButton"},
  23. config: {kind: "onyx.ToggleButton"}
  24. },
  25. {name: "onyx.Checkbox", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  26. inline: {kind: "onyx.Checkbox"},
  27. config: {kind: "onyx.Checkbox"}
  28. },
  29. {name: "onyx.RadioGroup",
  30. inline: {kind: "onyx.RadioGroup", components: [
  31. {content: "A"},
  32. {content: "B"},
  33. {content: "C"}
  34. ]},
  35. config: {kind: "onyx.RadioGroup", isContainer: true, components: [
  36. {content: "RadioButton"}
  37. ]}
  38. },
  39. {name: "onyx.RadioButton",
  40. inline: {content: "RadioButton", kind: "onyx.RadioButton"},
  41. config: {content: "$name", kind: "onyx.RadioButton"}
  42. },
  43. {name: "onyx.Toolbar", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  44. inline: {kind: "onyx.Toolbar"},
  45. config: {isContainer: true, kind: "onyx.Toolbar"}
  46. },
  47. {name: "onyx.Grabber", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  48. inline: {kind: "onyx.Grabber", style: "background-color: #333; padding: 4px 12px;"},
  49. config: {kind: "onyx.Grabber"}
  50. },
  51. {name: "onyx.Groupbox", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  52. inline: {kind: "onyx.Groupbox", components: [
  53. {content: "Header", kind: "onyx.GroupboxHeader"},
  54. {content: "Item", style: "padding: 10px;"}
  55. ]},
  56. config: {kind: "onyx.Groupbox", isContainer: true, components: [
  57. {content: "Header", kind: "onyx.GroupboxHeader", isContainer: true},
  58. {content: "Item", style: "padding: 10px;"}
  59. ]}
  60. },
  61. {name: "onyx.GroupboxHeader", title: "Foofoofoo", icon: "box_software.png", stars: 4, version: 2.0, blurb: "Use as a simple page header, or add an optional navigation menu.",
  62. inline: {content: "Header", kind: "onyx.GroupboxHeader"},
  63. config: {content: "$name", kind: "onyx.GroupboxHeader", isContainer: true}
  64. }
  65. ]}
  66. );