1 | "use strict";
|
2 |
|
3 | Object.defineProperty(exports, "__esModule", {
|
4 | value: true
|
5 | });
|
6 | exports.default = MultiSelect;
|
7 | let warnedOnce = false;
|
8 | const warn = () => {
|
9 | if (!warnedOnce) {
|
10 | 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'));
|
11 | warnedOnce = true;
|
12 | }
|
13 | };
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | function MultiSelect() {
|
22 | warn();
|
23 | return null;
|
24 | } |
\ | No newline at end of file |