@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
18 lines • 385 B
JavaScript
let id = {
mobileWidth: 640,
zindexCounter: 3,
idCounter: 0,
idPrefix: 'ZD',
scrollFetchLimit: 80,
isReducedMotion: false,
direction: 'ltr',
tooltipDebounce: 175,
getTooltipContainer: () => {},
autoComplete: false
};
export function getLibraryConfig(key) {
return id[key];
}
export function setLibraryConfig(configObj) {
id = Object.assign({}, id, configObj);
}