/* Version 0.2.2 */ /* Buttons */ Ractive.components['button'] = Ractive.extend({ isolated: true, data: { type: 'default', }, template: function () { return "{{yield}}"; }, }); /* Dropdowns Beta */ Ractive.components['dropdown'] = Ractive.extend({ isolated: true, template: "", }); Ractive.components['dropdown-trigger'] = Ractive.extend({ isolated: true, template: "", }); Ractive.components['dropdown-button'] = Ractive.extend({ isolated: true, template: "", }); Ractive.components['dropdown-item'] = Ractive.extend({ isolated: true, template: "{{yield}}", }); Ractive.components['dropdown-menu'] = Ractive.extend({ isolated: true, template: "", }); Ractive.components['dropdown-content'] = Ractive.extend({ isolated: true, template: "", }); Ractive.components['dropdown-divider'] = Ractive.extend({ isolated: true, template: "", }); /* Content */ Ractive.components['content'] = Ractive.extend({ isolated: true, template: "
{{yield}}
", }); /* Column */ Ractive.components['column'] = Ractive.extend({ isolated: true, template: "
{{yield}}
", }); /* Columns */ Ractive.components['columns'] = Ractive.extend({ isolated: true, template: "
{{yield}}
", });