@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
36 lines (35 loc) • 878 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.OptionProperties = void 0;
var _FieldDocs = require("../FieldDocs");
const OptionProperties = exports.OptionProperties = {
value: {
doc: 'Value for this option.',
type: ['string', 'number'],
status: 'optional'
},
title: {
doc: 'Title for the option. Overrides `children`.',
type: ['string', 'React.Node'],
status: 'optional'
},
text: {
doc: 'Secondary text.',
type: ['string', 'React.Node'],
status: 'optional'
},
disabled: {
doc: 'Will disable the option.',
type: 'boolean',
status: 'optional'
},
help: _FieldDocs.FieldProperties.help,
children: {
doc: 'Optional way to provide `title`. Will be ignored if `title` is used.',
type: 'React.Node',
status: 'optional'
}
};
//# sourceMappingURL=OptionDocs.js.map