@nattstack/ui 0.0.95 → 0.0.97

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.
@@ -0,0 +1,7 @@
1
+ import { Combobox } from "@base-ui/react";
2
+ import { JSX } from "react";
3
+ //#region src/components/combobox/combobox-collection.d.ts
4
+ interface ComboboxCollectionProps extends Combobox.Collection.Props {}
5
+ declare function ComboboxCollection(props: ComboboxCollectionProps): JSX.Element | null;
6
+ //#endregion
7
+ export { ComboboxCollection, ComboboxCollectionProps };
@@ -0,0 +1,9 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Combobox } from "@base-ui/react";
3
+ //#region src/components/combobox/combobox-collection.tsx
4
+ function ComboboxCollection(props) {
5
+ const { ...rest } = props;
6
+ return /* @__PURE__ */ jsx(Combobox.Collection, { ...rest });
7
+ }
8
+ //#endregion
9
+ export { ComboboxCollection };
@@ -6,12 +6,7 @@
6
6
 
7
7
  .combobox-content-module_base_p8XryW {
8
8
  background-color: var(--color-bg-shell-inner);
9
- box-shadow: 0 0 0 1px var(--color-border) inset,
10
- 0 .5px 0 oklab(0% none none / .03),
11
- 0 36px 15px -4px oklab(0% none none / .01),
12
- 0 20px 12px -3px oklab(0% none none / .03),
13
- 0 9px 9px -2px oklab(0% none none / .04),
14
- 0 2px 5px -1px oklab(0% none none / .05);
9
+ border-color: var(--color-border);
15
10
  color: var(--color-text-primary);
16
11
  max-height: min(var(--available-height), 480px);
17
12
  max-width: var(--available-width);
@@ -21,16 +16,17 @@
21
16
  transform-origin: var(--transform-origin);
22
17
  width: var(--anchor-width);
23
18
  will-change: opacity, transform;
19
+ border-style: solid;
20
+ border-width: 1px;
24
21
  border-radius: 12px;
25
22
  outline-width: 0;
26
23
  outline-style: solid;
27
24
  flex-direction: column;
28
- row-gap: 2px;
29
- padding: 4px;
30
25
  transition-property: opacity, transform;
31
26
  transition-duration: .15s;
32
27
  display: flex;
33
- overflow: auto;
28
+ overflow: hidden;
29
+ box-shadow: 0 .5px oklab(0% none none / .03), 0 36px 15px -4px oklab(0% none none / .01), 0 20px 12px -3px oklab(0% none none / .03), 0 9px 9px -2px oklab(0% none none / .04), 0 2px 5px -1px oklab(0% none none / .05);
34
30
  }
35
31
 
36
32
  .combobox-content-module_base_p8XryW:focus-visible {
@@ -20,12 +20,12 @@ function ComboboxInput(props) {
20
20
  ...rest
21
21
  }), /* @__PURE__ */ jsx(Combobox.Trigger, {
22
22
  className: combobox_input_module_default.trigger,
23
- "data-slot": "combobox-trigger",
23
+ "data-slot": "combobox-input-trigger",
24
24
  disabled: isDisabled,
25
25
  tabIndex: -1,
26
26
  children: /* @__PURE__ */ jsx(Combobox.Icon, {
27
27
  className: combobox_input_module_default.icon,
28
- "data-slot": "combobox-icon",
28
+ "data-slot": "combobox-input-icon",
29
29
  children: /* @__PURE__ */ jsx("svg", {
30
30
  height: "14",
31
31
  viewBox: "0 0 18 18",
@@ -1,7 +1,16 @@
1
1
  @layer components {
2
2
  .combobox-list-module_base_3WsM4q {
3
+ overscroll-behavior: contain;
3
4
  flex-direction: column;
4
5
  row-gap: 2px;
6
+ min-height: 0;
7
+ padding: 4px;
8
+ scroll-padding: 4px;
5
9
  display: flex;
10
+ overflow-y: auto;
11
+ }
12
+
13
+ .combobox-list-module_base_3WsM4q[data-empty] {
14
+ display: none;
6
15
  }
7
16
  }
@@ -0,0 +1,44 @@
1
+ @layer components {
2
+ .combobox-search-module_base_6egFqa {
3
+ box-shadow: inset 0 -1px 0 var(--color-border);
4
+ background-color: var(--color-bg-shell-inner);
5
+ flex-shrink: 0;
6
+ align-items: center;
7
+ column-gap: 8px;
8
+ height: 40px;
9
+ padding: 0 16px;
10
+ display: flex;
11
+ }
12
+
13
+ .combobox-search-module_icon_6egFqa {
14
+ color: var(--color-gray-9);
15
+ flex-shrink: 0;
16
+ justify-content: center;
17
+ align-items: center;
18
+ display: flex;
19
+ }
20
+
21
+ .combobox-search-module_input_6egFqa {
22
+ appearance: none;
23
+ color: var(--color-text-primary);
24
+ background-color: #0000;
25
+ border-style: none;
26
+ outline: none;
27
+ flex: 1;
28
+ min-width: 0;
29
+ height: 100%;
30
+ padding: 0;
31
+ font-size: 14px;
32
+ font-weight: 400;
33
+ }
34
+
35
+ .combobox-search-module_input_6egFqa::placeholder {
36
+ color: var(--color-gray-9);
37
+ user-select: none;
38
+ }
39
+
40
+ .combobox-search-module_input_6egFqa:disabled {
41
+ cursor: not-allowed;
42
+ opacity: .5;
43
+ }
44
+ }
@@ -0,0 +1,11 @@
1
+ import { Combobox } from "@base-ui/react";
2
+ import { JSX } from "react";
3
+ //#region src/components/combobox/combobox-search.d.ts
4
+ interface ComboboxSearchProps extends Omit<Combobox.Input.Props, "className" | "disabled" | "size"> {
5
+ className?: string;
6
+ isDisabled?: Combobox.Input.Props["disabled"];
7
+ }
8
+ declare function ComboboxSearch(props: ComboboxSearchProps): JSX.Element;
9
+ declare const comboboxSearchVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
10
+ //#endregion
11
+ export { ComboboxSearch, ComboboxSearchProps, comboboxSearchVariants };
@@ -0,0 +1,45 @@
1
+ import combobox_search_module_default from "./combobox-search.module.js";
2
+ import { cva } from "class-variance-authority";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ import { Combobox } from "@base-ui/react";
5
+ //#region src/components/combobox/combobox-search.tsx
6
+ function ComboboxSearch(props) {
7
+ const { className: customClassName = "", isDisabled = false, ...rest } = props;
8
+ return /* @__PURE__ */ jsxs("div", {
9
+ className: comboboxSearchVariants({ className: customClassName }),
10
+ "data-slot": "combobox-search",
11
+ children: [/* @__PURE__ */ jsx("span", {
12
+ className: combobox_search_module_default.icon,
13
+ "data-slot": "combobox-search-icon",
14
+ children: /* @__PURE__ */ jsxs("svg", {
15
+ height: "18",
16
+ viewBox: "0 0 18 18",
17
+ width: "18",
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ children: [/* @__PURE__ */ jsx("path", {
20
+ d: "M15.75 15.75L11.6386 11.6386",
21
+ fill: "none",
22
+ stroke: "currentColor",
23
+ strokeLinecap: "round",
24
+ strokeLinejoin: "round",
25
+ strokeWidth: "1.5"
26
+ }), /* @__PURE__ */ jsx("path", {
27
+ d: "M7.75 13.25C10.7875 13.25 13.25 10.7875 13.25 7.75C13.25 4.7125 10.7875 2.25 7.75 2.25C4.7125 2.25 2.25 4.7125 2.25 7.75C2.25 10.7875 4.7125 13.25 7.75 13.25Z",
28
+ fill: "none",
29
+ stroke: "currentColor",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round",
32
+ strokeWidth: "1.5"
33
+ })]
34
+ })
35
+ }), /* @__PURE__ */ jsx(Combobox.Input, {
36
+ className: combobox_search_module_default.input,
37
+ "data-slot": "combobox-search-input",
38
+ disabled: isDisabled,
39
+ ...rest
40
+ })]
41
+ });
42
+ }
43
+ const comboboxSearchVariants = cva(combobox_search_module_default.base);
44
+ //#endregion
45
+ export { ComboboxSearch, comboboxSearchVariants };
@@ -0,0 +1,9 @@
1
+ import './combobox-search.css';
2
+ //#region src/components/combobox/combobox-search.module.css
3
+ var combobox_search_module_default = {
4
+ "base": "combobox-search-module_base_6egFqa",
5
+ "icon": "combobox-search-module_icon_6egFqa",
6
+ "input": "combobox-search-module_input_6egFqa"
7
+ };
8
+ //#endregion
9
+ export { combobox_search_module_default as default };
@@ -0,0 +1,80 @@
1
+ @layer components {
2
+ .combobox-trigger-module_base_OcOZOW {
3
+ background-color: var(--color-bg-shell-inner);
4
+ box-shadow: inset 0 0 0 1px var(--color-border);
5
+ cursor: pointer;
6
+ outline-offset: 2px;
7
+ outline: 2px solid #0000;
8
+ flex-shrink: 0;
9
+ align-items: center;
10
+ column-gap: 8px;
11
+ width: stretch;
12
+ padding: 0 16px;
13
+ transition-property: background-color, box-shadow;
14
+ transition-duration: .15s;
15
+ display: inline-flex;
16
+ overflow: hidden;
17
+ }
18
+
19
+ .combobox-trigger-module_base_OcOZOW:disabled {
20
+ cursor: not-allowed;
21
+ opacity: .5;
22
+ background-color: var(--color-gray-3);
23
+ }
24
+
25
+ .combobox-trigger-module_base_OcOZOW:focus-visible {
26
+ outline-color: var(--color-primary);
27
+ }
28
+
29
+ .combobox-trigger-module_base_OcOZOW:hover:not(:disabled) {
30
+ box-shadow: inset 0 0 0 1px var(--color-gray-6);
31
+ }
32
+
33
+ .combobox-trigger-module_base_OcOZOW[data-popup-open] {
34
+ background-color: var(--color-gray-3);
35
+ }
36
+
37
+ .combobox-trigger-module_size_32_OcOZOW {
38
+ border-radius: 8px;
39
+ height: 32px;
40
+ }
41
+
42
+ .combobox-trigger-module_size_36_OcOZOW {
43
+ border-radius: 9px;
44
+ height: 36px;
45
+ }
46
+
47
+ .combobox-trigger-module_size_40_OcOZOW {
48
+ border-radius: 10px;
49
+ height: 40px;
50
+ }
51
+
52
+ .combobox-trigger-module_size_44_OcOZOW {
53
+ border-radius: 11px;
54
+ height: 44px;
55
+ }
56
+
57
+ .combobox-trigger-module_size_48_OcOZOW {
58
+ border-radius: 12px;
59
+ height: 48px;
60
+ }
61
+
62
+ .combobox-trigger-module_rounded_full_OcOZOW {
63
+ border-radius: 9999px;
64
+ }
65
+
66
+ .combobox-trigger-module_icon_OcOZOW {
67
+ justify-content: center;
68
+ align-items: center;
69
+ width: 16px;
70
+ height: 16px;
71
+ margin-left: auto;
72
+ transition-property: rotate;
73
+ transition-duration: .15s;
74
+ display: flex;
75
+ }
76
+
77
+ .combobox-trigger-module_base_OcOZOW[data-popup-open] .combobox-trigger-module_icon_OcOZOW {
78
+ rotate: 180deg;
79
+ }
80
+ }
@@ -0,0 +1,15 @@
1
+ import { VariantProps } from "class-variance-authority";
2
+ import { Combobox } from "@base-ui/react";
3
+ import { JSX } from "react";
4
+ //#region src/components/combobox/combobox-trigger.d.ts
5
+ interface ComboboxTriggerProps extends Combobox.Trigger.Props {
6
+ isRounded?: VariantProps<typeof comboboxTriggerVariants>["isRounded"];
7
+ size?: VariantProps<typeof comboboxTriggerVariants>["size"];
8
+ }
9
+ declare function ComboboxTrigger(props: ComboboxTriggerProps): JSX.Element;
10
+ declare const comboboxTriggerVariants: (props?: ({
11
+ isRounded?: boolean | null | undefined;
12
+ size?: 32 | 36 | 40 | 44 | 48 | null | undefined;
13
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
14
+ //#endregion
15
+ export { ComboboxTrigger, ComboboxTriggerProps, comboboxTriggerVariants };
@@ -0,0 +1,48 @@
1
+ import combobox_trigger_module_default from "./combobox-trigger.module.js";
2
+ import { cva } from "class-variance-authority";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ import { Combobox } from "@base-ui/react";
5
+ //#region src/components/combobox/combobox-trigger.tsx
6
+ function ComboboxTrigger(props) {
7
+ const { children = void 0, className: customClassName = "", isRounded = false, size = 40, ...rest } = props;
8
+ const combinedClassName = comboboxTriggerVariants({
9
+ className: customClassName,
10
+ isRounded,
11
+ size
12
+ });
13
+ return /* @__PURE__ */ jsxs(Combobox.Trigger, {
14
+ className: combinedClassName,
15
+ "data-slot": "combobox-trigger",
16
+ ...rest,
17
+ children: [children, /* @__PURE__ */ jsx(Combobox.Icon, {
18
+ className: combobox_trigger_module_default.icon,
19
+ "data-slot": "combobox-icon",
20
+ children: /* @__PURE__ */ jsx("svg", {
21
+ height: "14",
22
+ viewBox: "0 0 18 18",
23
+ width: "14",
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ children: /* @__PURE__ */ jsx("polyline", {
26
+ fill: "none",
27
+ points: "15.25 6.5 9 12.75 2.75 6.5",
28
+ stroke: "currentColor",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round",
31
+ strokeWidth: "1.5"
32
+ })
33
+ })
34
+ })]
35
+ });
36
+ }
37
+ const comboboxTriggerVariants = cva(combobox_trigger_module_default.base, { variants: {
38
+ isRounded: { true: combobox_trigger_module_default.rounded_full },
39
+ size: {
40
+ 32: combobox_trigger_module_default.size_32,
41
+ 36: combobox_trigger_module_default.size_36,
42
+ 40: combobox_trigger_module_default.size_40,
43
+ 44: combobox_trigger_module_default.size_44,
44
+ 48: combobox_trigger_module_default.size_48
45
+ }
46
+ } });
47
+ //#endregion
48
+ export { ComboboxTrigger, comboboxTriggerVariants };
@@ -0,0 +1,14 @@
1
+ import './combobox-trigger.css';
2
+ //#region src/components/combobox/combobox-trigger.module.css
3
+ var combobox_trigger_module_default = {
4
+ "base": "combobox-trigger-module_base_OcOZOW",
5
+ "icon": "combobox-trigger-module_icon_OcOZOW",
6
+ "rounded_full": "combobox-trigger-module_rounded_full_OcOZOW",
7
+ "size_32": "combobox-trigger-module_size_32_OcOZOW",
8
+ "size_36": "combobox-trigger-module_size_36_OcOZOW",
9
+ "size_40": "combobox-trigger-module_size_40_OcOZOW",
10
+ "size_44": "combobox-trigger-module_size_44_OcOZOW",
11
+ "size_48": "combobox-trigger-module_size_48_OcOZOW"
12
+ };
13
+ //#endregion
14
+ export { combobox_trigger_module_default as default };
@@ -0,0 +1,14 @@
1
+ @layer components {
2
+ .combobox-value-module_base_kG6VyG {
3
+ color: var(--color-text-primary);
4
+ text-overflow: ellipsis;
5
+ white-space: nowrap;
6
+ font-size: 14px;
7
+ font-weight: 450;
8
+ overflow-x: hidden;
9
+ }
10
+
11
+ [data-placeholder] .combobox-value-module_base_kG6VyG {
12
+ color: var(--color-gray-9);
13
+ }
14
+ }
@@ -0,0 +1,10 @@
1
+ import { Combobox } from "@base-ui/react";
2
+ import { JSX } from "react";
3
+ //#region src/components/combobox/combobox-value.d.ts
4
+ interface ComboboxValueProps extends Combobox.Value.Props {
5
+ className?: string;
6
+ }
7
+ declare function ComboboxValue(props: ComboboxValueProps): JSX.Element;
8
+ declare const comboboxValueVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
9
+ //#endregion
10
+ export { ComboboxValue, ComboboxValueProps, comboboxValueVariants };
@@ -0,0 +1,22 @@
1
+ import combobox_value_module_default from "./combobox-value.module.js";
2
+ import { cva } from "class-variance-authority";
3
+ import { jsx } from "react/jsx-runtime";
4
+ import { Combobox } from "@base-ui/react";
5
+ //#region src/components/combobox/combobox-value.tsx
6
+ function ComboboxValue(props) {
7
+ const { children = void 0, className: customClassName = "", placeholder = void 0, ...rest } = props;
8
+ const combinedClassName = comboboxValueVariants({ className: customClassName });
9
+ const resolvedChildren = typeof children === "function" ? (selectedValue) => (selectedValue ?? void 0) === void 0 ? placeholder : children(selectedValue) : children;
10
+ return /* @__PURE__ */ jsx("div", {
11
+ className: combinedClassName,
12
+ "data-slot": "combobox-value",
13
+ children: /* @__PURE__ */ jsx(Combobox.Value, {
14
+ placeholder,
15
+ ...rest,
16
+ children: resolvedChildren
17
+ })
18
+ });
19
+ }
20
+ const comboboxValueVariants = cva(combobox_value_module_default.base);
21
+ //#endregion
22
+ export { ComboboxValue, comboboxValueVariants };
@@ -0,0 +1,5 @@
1
+ import './combobox-value.css';
2
+ //#region src/components/combobox/combobox-value.module.css
3
+ var combobox_value_module_default = { "base": "combobox-value-module_base_kG6VyG" };
4
+ //#endregion
5
+ export { combobox_value_module_default as default };
@@ -3,6 +3,7 @@ import { ButtonLink, ButtonLinkProps } from "./button-link/button-link.js";
3
3
  import { Checkbox, CheckboxProps, checkboxVariants } from "./checkbox/checkbox.js";
4
4
  import { Column, ColumnProps, columnVariants } from "./column/column.js";
5
5
  import { Combobox, ComboboxProps } from "./combobox/combobox.js";
6
+ import { ComboboxCollection, ComboboxCollectionProps } from "./combobox/combobox-collection.js";
6
7
  import { ComboboxContent, ComboboxContentProps, comboboxContentVariants } from "./combobox/combobox-content.js";
7
8
  import { ComboboxEmpty, ComboboxEmptyProps, comboboxEmptyVariants } from "./combobox/combobox-empty.js";
8
9
  import { ComboboxGroup, ComboboxGroupProps, comboboxGroupVariants } from "./combobox/combobox-group.js";
@@ -10,7 +11,10 @@ import { ComboboxGroupLabel, ComboboxGroupLabelProps, comboboxGroupLabelVariants
10
11
  import { ComboboxInput, ComboboxInputProps, comboboxInputVariants } from "./combobox/combobox-input.js";
11
12
  import { ComboboxItem, ComboboxItemProps, comboboxItemVariants } from "./combobox/combobox-item.js";
12
13
  import { ComboboxList, ComboboxListProps, comboboxListVariants } from "./combobox/combobox-list.js";
14
+ import { ComboboxSearch, ComboboxSearchProps, comboboxSearchVariants } from "./combobox/combobox-search.js";
13
15
  import { ComboboxSeparator, ComboboxSeparatorProps, comboboxSeparatorVariants } from "./combobox/combobox-separator.js";
16
+ import { ComboboxTrigger, ComboboxTriggerProps, comboboxTriggerVariants } from "./combobox/combobox-trigger.js";
17
+ import { ComboboxValue, ComboboxValueProps, comboboxValueVariants } from "./combobox/combobox-value.js";
14
18
  import { DialogResponsive, DialogResponsiveProps } from "./dialog-responsive/dialog-responsive.js";
15
19
  import { DialogResponsivePopup, DialogResponsivePopupProps, dialogResponsivePopupVariants } from "./dialog-responsive/dialog-responsive-popup.js";
16
20
  import { DialogResponsiveTrigger, DialogResponsiveTriggerProps } from "./dialog-responsive/dialog-responsive-trigger.js";
@@ -60,4 +64,4 @@ import { Tooltip, TooltipProps } from "./tooltip/tooltip.js";
60
64
  import { TooltipPopup, TooltipPopupProps, tooltipPopupVariants } from "./tooltip/tooltip-popup.js";
61
65
  import { TooltipProvider, TooltipProviderProps } from "./tooltip/tooltip-provider.js";
62
66
  import { TooltipTrigger, TooltipTriggerProps } from "./tooltip/tooltip-trigger.js";
63
- export { Button, ButtonLink, ButtonLinkProps, ButtonProps, Checkbox, CheckboxProps, Column, ColumnProps, Combobox, ComboboxContent, ComboboxContentProps, ComboboxEmpty, ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, ComboboxGroupLabelProps, ComboboxGroupProps, ComboboxInput, ComboboxInputProps, ComboboxItem, ComboboxItemProps, ComboboxList, ComboboxListProps, ComboboxProps, ComboboxSeparator, ComboboxSeparatorProps, DialogResponsive, DialogResponsivePopup, DialogResponsivePopupProps, DialogResponsiveProps, DialogResponsiveTrigger, DialogResponsiveTriggerProps, IconButton, IconButtonProps, Input, InputProps, Label, LabelProps, MENU_CLASS_NAME, Menu, MenuCheckboxItem, MenuCheckboxItemProps, MenuContent, MenuContentProps, MenuGroup, MenuGroupLabel, MenuGroupLabelProps, MenuGroupProps, MenuItem, MenuItemProps, MenuLinkItem, MenuLinkItemProps, MenuProps, MenuRadioGroup, MenuRadioGroupProps, MenuRadioItem, MenuRadioItemProps, MenuSeparator, MenuSeparatorProps, MenuSubmenu, MenuSubmenuProps, MenuSubmenuTrigger, MenuSubmenuTriggerProps, MenuTrigger, MenuTriggerProps, MenuViewport, MenuViewportProps, OTPField, OTPFieldInput, Row, RowProps, Select, SelectContent, SelectContentProps, SelectGroup, SelectGroupLabel, SelectGroupLabelProps, SelectGroupProps, SelectItem, SelectItemProps, SelectProps, SelectSeparator, SelectSeparatorProps, SelectTrigger, SelectTriggerProps, SelectValue, SelectValueProps, Spacer, SpacerProps, Switch, SwitchProps, Tabs, TabsPanel, TabsPanelProps, TabsPillList, TabsPillListProps, TabsPillTab, TabsPillTabProps, TabsProps, TabsSegmentedList, TabsSegmentedListProps, TabsSegmentedTab, TabsSegmentedTabProps, TabsUnderlineList, TabsUnderlineListProps, TabsUnderlineTab, TabsUnderlineTabProps, Textarea, TextareaProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipPopup, TooltipPopupProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipTrigger, TooltipTriggerProps, button, checkboxVariants, columnVariants, comboboxContentVariants, comboboxEmptyVariants, comboboxGroupLabelVariants, comboboxGroupVariants, comboboxInputVariants, comboboxItemVariants, comboboxListVariants, comboboxSeparatorVariants, createMenuHandle, dialogResponsivePopupVariants, iconButton, inputVariants, labelVariants, otpFieldInputVariants, otpFieldVariants, rowVariants, selectContentVariants, selectGroupLabelVariants, selectGroupVariants, selectItemVariants, selectSeparatorVariants, selectTriggerVariants, selectValueVariants, spacerVariants, switchVariants, tabsPanelVariants, tabsPillListVariants, tabsPillTabVariants, tabsSegmentedListVariants, tabsSegmentedTabVariants, tabsUnderlineListVariants, tabsUnderlineTabVariants, tabsVariants, textareaVariants, toggleGroupItemVariants, toggleGroupVariants, tooltipPopupVariants };
67
+ export { Button, ButtonLink, ButtonLinkProps, ButtonProps, Checkbox, CheckboxProps, Column, ColumnProps, Combobox, ComboboxCollection, ComboboxCollectionProps, ComboboxContent, ComboboxContentProps, ComboboxEmpty, ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, ComboboxGroupLabelProps, ComboboxGroupProps, ComboboxInput, ComboboxInputProps, ComboboxItem, ComboboxItemProps, ComboboxList, ComboboxListProps, ComboboxProps, ComboboxSearch, ComboboxSearchProps, ComboboxSeparator, ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerProps, ComboboxValue, ComboboxValueProps, DialogResponsive, DialogResponsivePopup, DialogResponsivePopupProps, DialogResponsiveProps, DialogResponsiveTrigger, DialogResponsiveTriggerProps, IconButton, IconButtonProps, Input, InputProps, Label, LabelProps, MENU_CLASS_NAME, Menu, MenuCheckboxItem, MenuCheckboxItemProps, MenuContent, MenuContentProps, MenuGroup, MenuGroupLabel, MenuGroupLabelProps, MenuGroupProps, MenuItem, MenuItemProps, MenuLinkItem, MenuLinkItemProps, MenuProps, MenuRadioGroup, MenuRadioGroupProps, MenuRadioItem, MenuRadioItemProps, MenuSeparator, MenuSeparatorProps, MenuSubmenu, MenuSubmenuProps, MenuSubmenuTrigger, MenuSubmenuTriggerProps, MenuTrigger, MenuTriggerProps, MenuViewport, MenuViewportProps, OTPField, OTPFieldInput, Row, RowProps, Select, SelectContent, SelectContentProps, SelectGroup, SelectGroupLabel, SelectGroupLabelProps, SelectGroupProps, SelectItem, SelectItemProps, SelectProps, SelectSeparator, SelectSeparatorProps, SelectTrigger, SelectTriggerProps, SelectValue, SelectValueProps, Spacer, SpacerProps, Switch, SwitchProps, Tabs, TabsPanel, TabsPanelProps, TabsPillList, TabsPillListProps, TabsPillTab, TabsPillTabProps, TabsProps, TabsSegmentedList, TabsSegmentedListProps, TabsSegmentedTab, TabsSegmentedTabProps, TabsUnderlineList, TabsUnderlineListProps, TabsUnderlineTab, TabsUnderlineTabProps, Textarea, TextareaProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipPopup, TooltipPopupProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipTrigger, TooltipTriggerProps, button, checkboxVariants, columnVariants, comboboxContentVariants, comboboxEmptyVariants, comboboxGroupLabelVariants, comboboxGroupVariants, comboboxInputVariants, comboboxItemVariants, comboboxListVariants, comboboxSearchVariants, comboboxSeparatorVariants, comboboxTriggerVariants, comboboxValueVariants, createMenuHandle, dialogResponsivePopupVariants, iconButton, inputVariants, labelVariants, otpFieldInputVariants, otpFieldVariants, rowVariants, selectContentVariants, selectGroupLabelVariants, selectGroupVariants, selectItemVariants, selectSeparatorVariants, selectTriggerVariants, selectValueVariants, spacerVariants, switchVariants, tabsPanelVariants, tabsPillListVariants, tabsPillTabVariants, tabsSegmentedListVariants, tabsSegmentedTabVariants, tabsUnderlineListVariants, tabsUnderlineTabVariants, tabsVariants, textareaVariants, toggleGroupItemVariants, toggleGroupVariants, tooltipPopupVariants };
@@ -3,6 +3,7 @@ import { ButtonLink } from "./button-link/button-link.js";
3
3
  import { Checkbox, checkboxVariants } from "./checkbox/checkbox.js";
4
4
  import { Column, columnVariants } from "./column/column.js";
5
5
  import { Combobox } from "./combobox/combobox.js";
6
+ import { ComboboxCollection } from "./combobox/combobox-collection.js";
6
7
  import { ComboboxContent, comboboxContentVariants } from "./combobox/combobox-content.js";
7
8
  import { ComboboxEmpty, comboboxEmptyVariants } from "./combobox/combobox-empty.js";
8
9
  import { ComboboxGroup, comboboxGroupVariants } from "./combobox/combobox-group.js";
@@ -10,7 +11,10 @@ import { ComboboxGroupLabel, comboboxGroupLabelVariants } from "./combobox/combo
10
11
  import { ComboboxInput, comboboxInputVariants } from "./combobox/combobox-input.js";
11
12
  import { ComboboxItem, comboboxItemVariants } from "./combobox/combobox-item.js";
12
13
  import { ComboboxList, comboboxListVariants } from "./combobox/combobox-list.js";
14
+ import { ComboboxSearch, comboboxSearchVariants } from "./combobox/combobox-search.js";
13
15
  import { ComboboxSeparator, comboboxSeparatorVariants } from "./combobox/combobox-separator.js";
16
+ import { ComboboxTrigger, comboboxTriggerVariants } from "./combobox/combobox-trigger.js";
17
+ import { ComboboxValue, comboboxValueVariants } from "./combobox/combobox-value.js";
14
18
  import { DialogResponsive } from "./dialog-responsive/dialog-responsive.js";
15
19
  import { DialogResponsivePopup, dialogResponsivePopupVariants } from "./dialog-responsive/dialog-responsive-popup.js";
16
20
  import { DialogResponsiveTrigger } from "./dialog-responsive/dialog-responsive-trigger.js";
@@ -60,4 +64,4 @@ import { Tooltip } from "./tooltip/tooltip.js";
60
64
  import { TooltipPopup, tooltipPopupVariants } from "./tooltip/tooltip-popup.js";
61
65
  import { TooltipProvider } from "./tooltip/tooltip-provider.js";
62
66
  import { TooltipTrigger } from "./tooltip/tooltip-trigger.js";
63
- export { Button, ButtonLink, Checkbox, Column, Combobox, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, ComboboxSeparator, DialogResponsive, DialogResponsivePopup, DialogResponsiveTrigger, IconButton, Input, Label, MENU_CLASS_NAME, Menu, MenuCheckboxItem, MenuContent, MenuGroup, MenuGroupLabel, MenuItem, MenuLinkItem, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuSubmenu, MenuSubmenuTrigger, MenuTrigger, MenuViewport, OTPField, OTPFieldInput, Row, Select, SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectSeparator, SelectTrigger, SelectValue, Spacer, Switch, Tabs, TabsPanel, TabsPillList, TabsPillTab, TabsSegmentedList, TabsSegmentedTab, TabsUnderlineList, TabsUnderlineTab, Textarea, ToggleGroup, ToggleGroupItem, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, button, checkboxVariants, columnVariants, comboboxContentVariants, comboboxEmptyVariants, comboboxGroupLabelVariants, comboboxGroupVariants, comboboxInputVariants, comboboxItemVariants, comboboxListVariants, comboboxSeparatorVariants, createMenuHandle, dialogResponsivePopupVariants, iconButton, inputVariants, labelVariants, otpFieldInputVariants, otpFieldVariants, rowVariants, selectContentVariants, selectGroupLabelVariants, selectGroupVariants, selectItemVariants, selectSeparatorVariants, selectTriggerVariants, selectValueVariants, spacerVariants, switchVariants, tabsPanelVariants, tabsPillListVariants, tabsPillTabVariants, tabsSegmentedListVariants, tabsSegmentedTabVariants, tabsUnderlineListVariants, tabsUnderlineTabVariants, tabsVariants, textareaVariants, toggleGroupItemVariants, toggleGroupVariants, tooltipPopupVariants };
67
+ export { Button, ButtonLink, Checkbox, Column, Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, ComboboxSearch, ComboboxSeparator, ComboboxTrigger, ComboboxValue, DialogResponsive, DialogResponsivePopup, DialogResponsiveTrigger, IconButton, Input, Label, MENU_CLASS_NAME, Menu, MenuCheckboxItem, MenuContent, MenuGroup, MenuGroupLabel, MenuItem, MenuLinkItem, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuSubmenu, MenuSubmenuTrigger, MenuTrigger, MenuViewport, OTPField, OTPFieldInput, Row, Select, SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectSeparator, SelectTrigger, SelectValue, Spacer, Switch, Tabs, TabsPanel, TabsPillList, TabsPillTab, TabsSegmentedList, TabsSegmentedTab, TabsUnderlineList, TabsUnderlineTab, Textarea, ToggleGroup, ToggleGroupItem, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, button, checkboxVariants, columnVariants, comboboxContentVariants, comboboxEmptyVariants, comboboxGroupLabelVariants, comboboxGroupVariants, comboboxInputVariants, comboboxItemVariants, comboboxListVariants, comboboxSearchVariants, comboboxSeparatorVariants, comboboxTriggerVariants, comboboxValueVariants, createMenuHandle, dialogResponsivePopupVariants, iconButton, inputVariants, labelVariants, otpFieldInputVariants, otpFieldVariants, rowVariants, selectContentVariants, selectGroupLabelVariants, selectGroupVariants, selectItemVariants, selectSeparatorVariants, selectTriggerVariants, selectValueVariants, spacerVariants, switchVariants, tabsPanelVariants, tabsPillListVariants, tabsPillTabVariants, tabsSegmentedListVariants, tabsSegmentedTabVariants, tabsUnderlineListVariants, tabsUnderlineTabVariants, tabsVariants, textareaVariants, toggleGroupItemVariants, toggleGroupVariants, tooltipPopupVariants };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattstack/ui",
3
- "version": "0.0.95",
3
+ "version": "0.0.97",
4
4
  "description": "A collection of reusable React components built with Base UI, TypeScript, and CSS Modules",
5
5
  "keywords": [
6
6
  "base-ui",