wix-style-react
Version:
wix-style-react
35 lines (28 loc) • 793 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _FullTextView = require('wix-style-react/FullTextView');
var _FullTextView2 = _interopRequireDefault(_FullTextView);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.default = {
category: '12. Other',
storyName: '12.4 FullTextView',
component: _FullTextView2.default,
componentPath: '../src/FullTextView',
componentProps: {
children: 'Very long fancy and hardly fitting tab',
maxWidth: '172px'
},
exampleProps: {
onChange: function onChange(ev) {
return ev.hex();
},
onCancel: function onCancel() {
return 'Cancelled';
},
onConfirm: function onConfirm() {
return 'Confirmed';
}
}
};