myoperator-mcp 0.2.358 → 0.2.359
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +9 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8725,6 +8725,13 @@ export interface SelectFieldProps {
|
|
|
8725
8725
|
wrapperClassName?: string;
|
|
8726
8726
|
/** Additional class for trigger */
|
|
8727
8727
|
triggerClassName?: string;
|
|
8728
|
+
/**
|
|
8729
|
+
* Additional class for the dropdown content. By default the content width is
|
|
8730
|
+
* bound to the trigger width (\`--radix-select-trigger-width\`); override here
|
|
8731
|
+
* (e.g. \`w-[280px] max-w-[320px]\`) when the trigger is intentionally narrow \u2014
|
|
8732
|
+
* such as a "View all" text link \u2014 so the list isn't clipped to the link width.
|
|
8733
|
+
*/
|
|
8734
|
+
contentClassName?: string;
|
|
8728
8735
|
/** Additional class for label */
|
|
8729
8736
|
labelClassName?: string;
|
|
8730
8737
|
/** ID for the select */
|
|
@@ -8823,6 +8830,7 @@ const SelectField = React.forwardRef(
|
|
|
8823
8830
|
onSearchChange,
|
|
8824
8831
|
wrapperClassName,
|
|
8825
8832
|
triggerClassName,
|
|
8833
|
+
contentClassName,
|
|
8826
8834
|
labelClassName,
|
|
8827
8835
|
id,
|
|
8828
8836
|
name,
|
|
@@ -8990,6 +8998,7 @@ const SelectField = React.forwardRef(
|
|
|
8990
8998
|
<SelectContent
|
|
8991
8999
|
onViewportScrollEnd={hasMore !== false ? onScrollEnd : undefined}
|
|
8992
9000
|
hideScrollButtons={totalRendered === 0}
|
|
9001
|
+
className={contentClassName}
|
|
8993
9002
|
>
|
|
8994
9003
|
{/* Search input */}
|
|
8995
9004
|
{searchable && (
|
package/package.json
CHANGED