@raystack/apsara 0.11.10 → 0.11.11

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.cjs CHANGED
@@ -24260,7 +24260,7 @@ const FilteredChip = ({ column }) => {
24260
24260
  }
24261
24261
  case "select": {
24262
24262
  new Set(column?.getFilterValue());
24263
- return (jsxRuntimeExports.jsxs(Select, { children: [jsxRuntimeExports.jsx(Select.Trigger, { children: jsxRuntimeExports.jsx(Select.Value, { placeholder: "Select a value" }) }), jsxRuntimeExports.jsx(Select.Content, { children: jsxRuntimeExports.jsxs(Select.Group, { children: [jsxRuntimeExports.jsx(Select.Item, { value: "apple", children: "Apple" }), jsxRuntimeExports.jsx(Select.Item, { value: "xs", children: "Ban" })] }) })] }));
24263
+ return (jsxRuntimeExports.jsxs(Select, { children: [jsxRuntimeExports.jsx(Select.Trigger, { children: jsxRuntimeExports.jsx(Select.Value, { placeholder: "Select a value" }) }), jsxRuntimeExports.jsx(Select.Content, { children: jsxRuntimeExports.jsx(Select.Group, { children: options.map((option) => (jsxRuntimeExports.jsx(Select.Item, { value: option.value, children: option?.label || option?.value }, option.value))) }) })] }));
24264
24264
  }
24265
24265
  default: {
24266
24266
  const selectedValues = new Set(column?.getFilterValue());