ohctechv3/.svn/pristine/51/513d63429cdc883fc85c02e8a1e6e05a3749ebf4.svn-base

25 lines
812 B
Plaintext
Raw Permalink Normal View History

2024-10-28 15:03:36 +05:30
"use strict";
'use client';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MultiSelect = MultiSelect;
let warnedOnce = false;
const warn = () => {
if (!warnedOnce) {
console.error(['Base UI: The MultiSelect component was removed from the library.', '', 'The multi-select functionality is now available in the Select component.', 'Replace <MultiSelect> with <Select multiple /> in your code to remove this error.'].join('\n'));
warnedOnce = true;
}
};
/**
* The foundation for building custom-styled multi-selection select components.
*
* @deprecated The multi-select functionality is now available in the Select component. Replace <MultiSelect> with <Select multiple /> in your code.
* @ignore - do not document.
*/
function MultiSelect() {
warn();
return null;
}