minka-ds 0.2.9 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minka-ds",
3
- "version": "0.2.9",
3
+ "version": "0.3.1",
4
4
  "description": "Minka product design system — tokenized component library",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -96,14 +96,17 @@ function ComboboxContent({
96
96
  align = "start",
97
97
  alignOffset = 0,
98
98
  anchor,
99
+ container,
99
100
  ...props
100
101
  }: ComboboxPrimitive.Popup.Props &
101
102
  Pick<
102
103
  ComboboxPrimitive.Positioner.Props,
103
104
  "side" | "align" | "sideOffset" | "alignOffset" | "anchor"
104
- >) {
105
+ > & {
106
+ container?: HTMLElement | null
107
+ }) {
105
108
  return (
106
- <ComboboxPrimitive.Portal>
109
+ <ComboboxPrimitive.Portal container={container}>
107
110
  <ComboboxPrimitive.Positioner
108
111
  side={side}
109
112
  sideOffset={sideOffset}