UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

22 lines (19 loc) 468 B
/** * @todo: Add dynamic params support; * * Exp; * usePassThrough(pt1, pt2, pt3, pt*, { mergeSections: true }); * usePassThrough(pt1, { mergeSections: true }); */ const usePassThrough = (pt1 = {}, pt2 = {}, ptOptions) => { return { _usept: ptOptions, originalValue: pt1, value: { ...pt1, ...pt2 } }; }; /** * Generated bundle index. Do not edit. */ export { usePassThrough }; //# sourceMappingURL=primeng-passthrough.mjs.map