react-editable-json-tree
Version:
React Editable Json Tree
84 lines (80 loc) • 1.55 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/*
* Author: Alexandre Havrileck (Oxyno-zeta)
* Date: 20/10/16
* Licence: See Readme
*/
/* ************************************* */
/* ******** IMPORTS ******** */
/* ************************************* */
/* ************************************* */
/* ******** VARIABLES ******** */
/* ************************************* */
var object = {
minus: {
color: 'red'
},
plus: {
color: 'green'
},
collapsed: {
color: 'grey'
},
delimiter: {},
ul: {
padding: '0px',
margin: '0 0 0 25px',
listStyle: 'none'
},
name: {
color: '#2287CD'
},
addForm: {}
};
var array = {
minus: {
color: 'red'
},
plus: {
color: 'green'
},
collapsed: {
color: 'grey'
},
delimiter: {},
ul: {
padding: '0px',
margin: '0 0 0 25px',
listStyle: 'none'
},
name: {
color: '#2287CD'
},
addForm: {}
};
var value = {
minus: {
color: 'red'
},
editForm: {},
value: {
color: '#7bba3d'
},
li: {
minHeight: '22px',
lineHeight: '22px',
outline: '0px'
},
name: {
color: '#2287CD'
}
};
/* ************************************* */
/* ******** EXPORTS ******** */
/* ************************************* */
exports.object = object;
exports.array = array;
exports.value = value;