enyo.kind({ name: "custom.SwipeableItem", kind: "onyx.SwipeableItem", components: [ {name: "client", kind: "Slideable", min: -100, unit: "%", ondragstart: "clientDragStart"}, {name: "confirm", kind: "onyx.Toolbar", canGenerate: false, classes: "onyx-swipeable-item-confirm enyo-fit", style: "text-align: center;", ontap: "confirmTap", components: [ {kind: "onyx.Button", content: "Delete", ontap: "deleteTap"}, {kind: "onyx.Button", content: "Cancel", ontap: "cancelTap"}, {kind: "onyx.Button", content: "HEY!", ontap: "lalala"} ]} ] });