@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
27 lines (24 loc) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getLibraryConfig = getLibraryConfig;
exports.setLibraryConfig = setLibraryConfig;
var id = {
mobileWidth: 640,
zindexCounter: 3,
idCounter: 0,
idPrefix: 'ZD',
scrollFetchLimit: 80,
isReducedMotion: false,
direction: 'ltr',
tooltipDebounce: 175,
getTooltipContainer: function getTooltipContainer() {},
autoComplete: false
};
function getLibraryConfig(key) {
return id[key];
}
function setLibraryConfig(configObj) {
id = Object.assign({}, id, configObj);
}