@pathscale/ui 0.0.8 → 0.0.10

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,224 @@
1
+ import { cva, classes } from './HKS7ET6T.js';
2
+ import { createComponent, template, insert, effect, className, Dynamic, mergeProps, spread } from 'solid-js/web';
3
+ import { createContext, splitProps, createSignal, createEffect, useContext, Show } from 'solid-js';
4
+
5
+ var NavbarContext = createContext();
6
+
7
+ // src/components/navbar/Navbar.styles.ts
8
+ var navbarClass = cva("flex items-center px-4", {
9
+ variants: {
10
+ color: {
11
+ primary: "bg-indigo-600 text-white",
12
+ info: "bg-blue-500 text-white",
13
+ success: "bg-green-500 text-white",
14
+ danger: "bg-red-600 text-white",
15
+ warning: "bg-yellow-500 text-white",
16
+ light: "bg-white text-gray-800"
17
+ },
18
+ spaced: {
19
+ true: "py-4",
20
+ false: ""
21
+ },
22
+ shadow: {
23
+ true: "shadow-md",
24
+ false: ""
25
+ },
26
+ transparent: {
27
+ true: "bg-transparent",
28
+ false: ""
29
+ },
30
+ fixedTop: {
31
+ true: "fixed top-0 left-0 right-0 z-50",
32
+ false: ""
33
+ },
34
+ fixedBottom: {
35
+ true: "fixed bottom-0 left-0 right-0 z-50",
36
+ false: ""
37
+ }
38
+ },
39
+ defaultVariants: {
40
+ color: "primary",
41
+ spaced: false,
42
+ shadow: false,
43
+ transparent: false,
44
+ fixedTop: false,
45
+ fixedBottom: false
46
+ }
47
+ });
48
+ var navbarItemClass = cva(
49
+ "px-4 py-2 rounded transition-colors cursor-pointer",
50
+ {
51
+ variants: {
52
+ active: {
53
+ true: "",
54
+ false: ""
55
+ },
56
+ color: {
57
+ primary: "",
58
+ success: "",
59
+ info: "",
60
+ danger: "",
61
+ warning: "",
62
+ light: ""
63
+ }
64
+ },
65
+ defaultVariants: {
66
+ active: false,
67
+ color: "primary"
68
+ },
69
+ compoundVariants: [
70
+ { color: "primary", active: true, class: "bg-white/20 text-white" },
71
+ {
72
+ color: "primary",
73
+ active: false,
74
+ class: "hover:bg-white/10 text-white"
75
+ },
76
+ { color: "success", active: true, class: "bg-white/20 text-white" },
77
+ {
78
+ color: "success",
79
+ active: false,
80
+ class: "hover:bg-white/10 text-white"
81
+ },
82
+ { color: "info", active: true, class: "bg-white/20 text-white" },
83
+ { color: "info", active: false, class: "hover:bg-white/10 text-white" },
84
+ { color: "danger", active: true, class: "bg-white/20 text-white" },
85
+ { color: "danger", active: false, class: "hover:bg-white/10 text-white" },
86
+ { color: "warning", active: true, class: "bg-white/20 text-white" },
87
+ {
88
+ color: "warning",
89
+ active: false,
90
+ class: "hover:bg-white/10 text-white"
91
+ },
92
+ { color: "light", active: true, class: "bg-gray-300 text-gray-900" },
93
+ {
94
+ color: "light",
95
+ active: false,
96
+ class: "hover:bg-gray-100 text-gray-800"
97
+ }
98
+ ]
99
+ }
100
+ );
101
+ var navbarDropdownClass = cva("relative", {
102
+ variants: {
103
+ hoverable: {
104
+ true: "group",
105
+ false: ""
106
+ }
107
+ },
108
+ defaultVariants: {
109
+ hoverable: true
110
+ }
111
+ });
112
+ var dropdownMenuClass = cva(
113
+ "absolute mt-2 bg-white text-gray-800 rounded shadow-lg hidden group-hover:block",
114
+ {
115
+ variants: {
116
+ align: {
117
+ left: "left-0",
118
+ right: "right-0"
119
+ }
120
+ },
121
+ defaultVariants: {
122
+ align: "left"
123
+ }
124
+ }
125
+ );
126
+
127
+ // src/components/navbar/Navbar.tsx
128
+ var _tmpl$ = /* @__PURE__ */ template(`<nav>`);
129
+ var Navbar = (props) => {
130
+ const [local] = splitProps(props, ["color", "modelValue", "children", "spaced", "shadow", "transparent", "fixedTop", "fixedBottom"]);
131
+ const [selected, setSelected] = createSignal(props.modelValue);
132
+ createEffect(() => {
133
+ if (props.modelValue !== void 0) {
134
+ setSelected(props.modelValue);
135
+ }
136
+ });
137
+ return createComponent(NavbarContext.Provider, {
138
+ get value() {
139
+ return {
140
+ color: local.color ?? "primary",
141
+ selected,
142
+ setSelected: (val) => {
143
+ props.onChange?.(val);
144
+ setSelected(val);
145
+ }
146
+ };
147
+ },
148
+ get children() {
149
+ var _el$ = _tmpl$();
150
+ insert(_el$, () => local.children);
151
+ effect(() => className(_el$, navbarClass({
152
+ color: local.color,
153
+ spaced: local.spaced,
154
+ shadow: local.shadow,
155
+ transparent: local.transparent,
156
+ fixedTop: local.fixedTop,
157
+ fixedBottom: local.fixedBottom
158
+ })));
159
+ return _el$;
160
+ }
161
+ });
162
+ };
163
+ var Navbar_default = Navbar;
164
+ var allowedColors = ["primary", "info", "success", "danger", "warning", "light"];
165
+ var NavbarItem = (props) => {
166
+ const context = useContext(NavbarContext);
167
+ const [local, rest] = splitProps(props, ["tag", "href", "label", "children", "class", "color"]);
168
+ const Tag = local.tag || (local.href ? "a" : "div");
169
+ const isActive = () => context?.selected?.() === local.label;
170
+ const resolveColor = (input) => {
171
+ return allowedColors.includes(input) ? input : void 0;
172
+ };
173
+ return createComponent(Dynamic, mergeProps({
174
+ component: Tag,
175
+ get href() {
176
+ return local.href;
177
+ },
178
+ onClick: () => context?.setSelected?.(local.label),
179
+ get ["class"]() {
180
+ return classes(navbarItemClass({
181
+ active: isActive(),
182
+ color: resolveColor(local.color ?? context?.color)
183
+ }), local.class);
184
+ }
185
+ }, rest, {
186
+ get children() {
187
+ return local.children;
188
+ }
189
+ }));
190
+ };
191
+ var NavbarItem_default = NavbarItem;
192
+ var _tmpl$2 = /* @__PURE__ */ template(`<div>`);
193
+ var _tmpl$22 = /* @__PURE__ */ template(`<div><div class="cursor-pointer px-4 py-2 rounded hover:bg-white/10">`);
194
+ var NavbarDropdown = (props) => {
195
+ const [local, rest] = splitProps(props, ["label", "hoverable", "align", "class", "children"]);
196
+ return (() => {
197
+ var _el$ = _tmpl$22(), _el$2 = _el$.firstChild;
198
+ spread(_el$, mergeProps({
199
+ get ["class"]() {
200
+ return classes(navbarDropdownClass({
201
+ hoverable: local.hoverable
202
+ }), local.class);
203
+ }
204
+ }, rest), false, true);
205
+ insert(_el$2, () => local.label);
206
+ insert(_el$, createComponent(Show, {
207
+ get when() {
208
+ return local.hoverable;
209
+ },
210
+ get children() {
211
+ var _el$3 = _tmpl$2();
212
+ insert(_el$3, () => local.children);
213
+ effect(() => className(_el$3, dropdownMenuClass({
214
+ align: local.align
215
+ })));
216
+ return _el$3;
217
+ }
218
+ }), null);
219
+ return _el$;
220
+ })();
221
+ };
222
+ var NavbarDropdown_default = NavbarDropdown;
223
+
224
+ export { NavbarDropdown_default, NavbarItem_default, Navbar_default };
@@ -42,7 +42,7 @@ var tooltipVariants = cva(
42
42
  },
43
43
  multilined: {
44
44
  true: "whitespace-pre-wrap",
45
- false: "whitespace-nowrap"
45
+ false: "whitespace-nowrap overflow-hidden text-ellipsis"
46
46
  },
47
47
  animated: {
48
48
  true: "transition-opacity duration-300 ease-in-out",
@@ -1 +1 @@
1
- export { button_default as default } from '../../chunk/YMO6RPS6.js';
1
+ export { button_default as default } from '../../chunk/NZZRKP74.js';
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  button_default
3
- } from "../../chunk/SCJSBRV2.jsx";
4
- import "../../chunk/YAQK2KFY.jsx";
3
+ } from "../../chunk/GA2HCFRS.jsx";
5
4
  import "../../chunk/KACNXPUM.jsx";
6
5
  import "../../chunk/P7WPLZNA.jsx";
7
6
  export {
@@ -1,43 +1,27 @@
1
- import { Component, JSX, ComponentProps } from 'solid-js';
2
- import { C as ConfigVariants, a as ClassProps, V as VariantProps } from '../../classes-B_S9K-9I.js';
3
-
4
- declare const dropdownVariants: {
5
- (props?: (ConfigVariants<{
6
- position: {
7
- "bottom-left": string;
8
- "bottom-right": string;
9
- "top-left": string;
10
- "top-right": string;
11
- };
12
- open: {
13
- true: string;
14
- false: string;
15
- };
16
- }> & ClassProps) | undefined): string;
17
- variantKeys: ("open" | "position")[];
18
- };
1
+ import { Component, JSX } from 'solid-js';
19
2
 
20
3
  type DropdownProps = {
21
- label?: string | JSX.Element;
22
- disabledLabel?: string | JSX.Element;
23
- trigger?: "click" | "hover";
24
4
  children: JSX.Element;
25
- color?: "primary" | "secondary" | "default";
5
+ hoverable?: boolean;
26
6
  disabled?: boolean;
27
- className?: string;
28
- } & VariantProps<typeof dropdownVariants> & ClassProps & ComponentProps<"div">;
7
+ position?: "left" | "right" | "top-left" | "top-right";
8
+ };
29
9
  declare const Dropdown: Component<DropdownProps>;
30
10
 
31
- interface DropdownItemProps {
32
- hasLink?: boolean;
11
+ declare const DropdownTrigger: Component<{
33
12
  children: JSX.Element;
34
- }
35
- declare const DropdownItem: Component<DropdownItemProps>;
13
+ }>;
36
14
 
37
- interface DropdownMenuProps extends VariantProps<typeof dropdownVariants>, // open + position only
38
- JSX.HTMLAttributes<HTMLDivElement> {
15
+ declare const DropdownMenu: Component<{
39
16
  children: JSX.Element;
40
- }
41
- declare const DropdownMenu: Component<DropdownMenuProps>;
17
+ }>;
18
+
19
+ type DropdownItemProps = {
20
+ children: JSX.Element;
21
+ onClick?: () => void;
22
+ value?: string;
23
+ disabled?: boolean;
24
+ };
25
+ declare const DropdownItem: Component<DropdownItemProps>;
42
26
 
43
- export { Dropdown, DropdownItem, DropdownMenu };
27
+ export { Dropdown, DropdownItem, DropdownMenu, DropdownTrigger };
@@ -1 +1 @@
1
- export { Dropdown_default as Dropdown, DropdownItem_default as DropdownItem, DropdownMenu_default as DropdownMenu } from '../../chunk/7ROVLN3J.js';
1
+ export { Dropdown_default as Dropdown, DropdownItem_default as DropdownItem, DropdownMenu_default as DropdownMenu, DropdownTrigger_default as DropdownTrigger } from '../../chunk/3FBDYV4P.js';
@@ -1,12 +1,13 @@
1
1
  import {
2
2
  DropdownItem_default,
3
3
  DropdownMenu_default,
4
+ DropdownTrigger_default,
4
5
  Dropdown_default
5
- } from "../../chunk/D2BEL4SM.jsx";
6
- import "../../chunk/YAQK2KFY.jsx";
6
+ } from "../../chunk/OJRG4ZAB.jsx";
7
7
  import "../../chunk/P7WPLZNA.jsx";
8
8
  export {
9
9
  Dropdown_default as Dropdown,
10
10
  DropdownItem_default as DropdownItem,
11
- DropdownMenu_default as DropdownMenu
11
+ DropdownMenu_default as DropdownMenu,
12
+ DropdownTrigger_default as DropdownTrigger
12
13
  };
@@ -1,74 +1,36 @@
1
1
  import { Component, JSX } from 'solid-js';
2
- import { C as ConfigVariants, a as ClassProps, V as VariantProps } from '../../classes-B_S9K-9I.js';
3
-
4
- declare const navbarStyles: {
5
- (props?: (ConfigVariants<{
6
- color: {
7
- info: string;
8
- primary: string;
9
- success: string;
10
- light: string;
11
- };
12
- }> & ClassProps) | undefined): string;
13
- variantKeys: "color"[];
14
- };
15
- declare const navbarItemStyles: {
16
- (props?: (ConfigVariants<{
17
- active: {
18
- true: string;
19
- false: string;
20
- };
21
- tag: {
22
- div: string;
23
- a: string;
24
- };
25
- }> & ClassProps) | undefined): string;
26
- variantKeys: ("active" | "tag")[];
27
- };
28
- declare const navbarDropdownStyles: {
29
- (props?: (ConfigVariants<{
30
- hoverable: {
31
- true: string;
32
- false: string;
33
- };
34
- }> & ClassProps) | undefined): string;
35
- variantKeys: "hoverable"[];
36
- };
37
- declare const dropdownMenuStyles: {
38
- (props?: (ConfigVariants<{
39
- align: {
40
- left: string;
41
- right: string;
42
- };
43
- }> & ClassProps) | undefined): string;
44
- variantKeys: "align"[];
45
- };
2
+ import { a as ClassProps } from '../../classes-B_S9K-9I.js';
46
3
 
47
4
  type NavbarProps = {
48
- brand?: JSX.Element;
49
- start?: JSX.Element;
50
- end?: JSX.Element;
51
- className?: string;
52
- } & VariantProps<typeof navbarStyles> & ClassProps & JSX.HTMLAttributes<HTMLElement>;
5
+ color?: "primary" | "info" | "success" | "danger" | "warning" | "light";
6
+ modelValue?: string;
7
+ spaced?: boolean;
8
+ shadow?: boolean;
9
+ transparent?: boolean;
10
+ fixedTop?: boolean;
11
+ fixedBottom?: boolean;
12
+ children?: JSX.Element;
13
+ onChange?: (val: string) => void;
14
+ };
53
15
  declare const Navbar: Component<NavbarProps>;
54
16
 
17
+ type NavbarColor = "primary" | "info" | "success" | "danger" | "warning" | "light";
55
18
  type NavbarItemProps = {
56
- active?: boolean;
57
- href?: string;
19
+ label: string;
58
20
  tag?: "a" | "div";
59
- to?: string;
60
- className?: string;
21
+ href?: string;
61
22
  children: JSX.Element;
62
- } & VariantProps<typeof navbarItemStyles> & ClassProps & Omit<JSX.HTMLAttributes<HTMLElement>, "children">;
23
+ color?: NavbarColor;
24
+ } & ClassProps;
63
25
  declare const NavbarItem: Component<NavbarItemProps>;
64
26
 
65
27
  type NavbarDropdownProps = {
66
28
  label: string;
67
29
  hoverable?: boolean;
68
30
  align?: "left" | "right";
69
- className?: string;
31
+ class?: string;
70
32
  children: JSX.Element;
71
- } & VariantProps<typeof navbarDropdownStyles> & VariantProps<typeof dropdownMenuStyles> & ClassProps;
33
+ };
72
34
  declare const NavbarDropdown: Component<NavbarDropdownProps>;
73
35
 
74
36
  export { Navbar, NavbarDropdown, NavbarItem };
@@ -1 +1 @@
1
- export { Navbar_default as Navbar, NavbarDropdown_default as NavbarDropdown, NavbarItem_default as NavbarItem } from '../../chunk/OSJ3P7PI.js';
1
+ export { Navbar_default as Navbar, NavbarDropdown_default as NavbarDropdown, NavbarItem_default as NavbarItem } from '../../chunk/P653OZ5D.js';
@@ -2,7 +2,7 @@ import {
2
2
  NavbarDropdown_default,
3
3
  NavbarItem_default,
4
4
  Navbar_default
5
- } from "../../chunk/BBDVIXAH.jsx";
5
+ } from "../../chunk/55B7Q4NT.jsx";
6
6
  import "../../chunk/P7WPLZNA.jsx";
7
7
  export {
8
8
  Navbar_default as Navbar,
@@ -1 +1 @@
1
- export { switch_default as default } from '../../chunk/6B7HOWQD.js';
1
+ export { switch_default as default } from '../../chunk/EE4HXMKA.js';
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  switch_default
3
- } from "../../chunk/5R7S7TXL.jsx";
3
+ } from "../../chunk/GWFGP2JQ.jsx";
4
4
  import "../../chunk/P7WPLZNA.jsx";
5
5
  export {
6
6
  switch_default as default
@@ -1 +1 @@
1
- export { tooltip_default as default } from '../../chunk/5KABSQPM.js';
1
+ export { tooltip_default as default } from '../../chunk/OYAKKETQ.js';
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  tooltip_default
3
- } from "../../chunk/YM2NLFQE.jsx";
3
+ } from "../../chunk/R6COBCN7.jsx";
4
4
  import "../../chunk/P7WPLZNA.jsx";
5
5
  export {
6
6
  tooltip_default as default
package/dist/index.d.ts CHANGED
@@ -14,7 +14,7 @@ export { S as Switch } from './Switch-CW6QtO1Y.js';
14
14
  export { C as Checkbox } from './Checkbox-CzeDsQLA.js';
15
15
  export { Breadcrumb, BreadcrumbItem } from './components/breadcrumb/index.js';
16
16
  export { A as Autocomplete } from './Autocomplete-gLkjMHrc.js';
17
- export { Dropdown, DropdownItem, DropdownMenu } from './components/dropdown/index.js';
17
+ export { Dropdown, DropdownItem, DropdownMenu, DropdownTrigger } from './components/dropdown/index.js';
18
18
  export { F as Field } from './Field-DfUn85_1.js';
19
19
  export { Menu, MenuItem, MenuList } from './components/menu/index.js';
20
20
  export { Navbar, NavbarDropdown, NavbarItem } from './components/navbar/index.js';
package/dist/index.js CHANGED
@@ -1,25 +1,25 @@
1
1
  export { Toaster_default as Toaster, toast_default as toast } from './chunk/JWRGKHDO.js';
2
- export { tooltip_default as Tooltip } from './chunk/5KABSQPM.js';
2
+ export { tooltip_default as Tooltip } from './chunk/OYAKKETQ.js';
3
3
  export { upload_default as Upload } from './chunk/YDEDUOFM.js';
4
4
  export { select_default as Select } from './chunk/OMRJVDZV.js';
5
- export { switch_default as Switch } from './chunk/6B7HOWQD.js';
6
5
  export { steps_default as Steps } from './chunk/TT2JYGLU.js';
6
+ export { switch_default as Switch } from './chunk/EE4HXMKA.js';
7
7
  export { table_default as Table } from './chunk/QYEMOKUG.js';
8
8
  export { tabs_default as Tabs } from './chunk/WOT36Q7O.js';
9
9
  export { tag_default as Tag } from './chunk/CJZGTNJZ.js';
10
10
  export { textarea_default as Textarea } from './chunk/EB7KXR65.js';
11
11
  export { timeline_default as Timeline } from './chunk/WUZETUQR.js';
12
- export { Dropdown_default as Dropdown, DropdownItem_default as DropdownItem, DropdownMenu_default as DropdownMenu } from './chunk/7ROVLN3J.js';
12
+ export { Dropdown_default as Dropdown, DropdownItem_default as DropdownItem, DropdownMenu_default as DropdownMenu, DropdownTrigger_default as DropdownTrigger } from './chunk/3FBDYV4P.js';
13
13
  export { field_default as Field } from './chunk/MAX47D6F.js';
14
14
  export { input_default as Input } from './chunk/O2IMHWMY.js';
15
15
  export { Menu_default as Menu, MenuItem_default as MenuItem, MenuList_default as MenuList } from './chunk/3VOILEMN.js';
16
+ export { Navbar_default as Navbar, NavbarDropdown_default as NavbarDropdown, NavbarItem_default as NavbarItem } from './chunk/P653OZ5D.js';
16
17
  export { pagination_default as Pagination } from './chunk/DBQ7IOPU.js';
17
- export { Navbar_default as Navbar, NavbarDropdown_default as NavbarDropdown, NavbarItem_default as NavbarItem } from './chunk/OSJ3P7PI.js';
18
18
  export { progress_default as Progress } from './chunk/GMIXRYN3.js';
19
19
  export { accordion_default as Accordion } from './chunk/NZKPDBTE.js';
20
20
  export { autocomplete_default as Autocomplete } from './chunk/MYERRMTM.js';
21
21
  export { avatar_default as Avatar } from './chunk/MI773TMC.js';
22
22
  export { Breadcrumb_default as Breadcrumb, BreadcrumbItem_default as BreadcrumbItem } from './chunk/V6Y5E7BL.js';
23
- export { button_default as Button } from './chunk/YMO6RPS6.js';
23
+ export { button_default as Button } from './chunk/NZZRKP74.js';
24
24
  export { Polymorphic_default as Polymorphic, PolymorphicButton_default as PolymorphicButton } from './chunk/G6RG4LR7.js';
25
25
  export { checkbox_default as Checkbox } from './chunk/WYHYWDOM.js';
package/dist/index.jsx CHANGED
@@ -4,19 +4,19 @@ import {
4
4
  } from "./chunk/FKSQPGOD.jsx";
5
5
  import {
6
6
  tooltip_default
7
- } from "./chunk/YM2NLFQE.jsx";
7
+ } from "./chunk/R6COBCN7.jsx";
8
8
  import {
9
9
  upload_default
10
10
  } from "./chunk/QHJOIUYT.jsx";
11
- import {
12
- steps_default
13
- } from "./chunk/LAQPAV5I.jsx";
14
11
  import {
15
12
  select_default
16
13
  } from "./chunk/F33TSIEQ.jsx";
14
+ import {
15
+ steps_default
16
+ } from "./chunk/LAQPAV5I.jsx";
17
17
  import {
18
18
  switch_default
19
- } from "./chunk/5R7S7TXL.jsx";
19
+ } from "./chunk/GWFGP2JQ.jsx";
20
20
  import {
21
21
  table_default
22
22
  } from "./chunk/HWAGW5N4.jsx";
@@ -35,8 +35,9 @@ import {
35
35
  import {
36
36
  DropdownItem_default,
37
37
  DropdownMenu_default,
38
+ DropdownTrigger_default,
38
39
  Dropdown_default
39
- } from "./chunk/D2BEL4SM.jsx";
40
+ } from "./chunk/OJRG4ZAB.jsx";
40
41
  import {
41
42
  field_default
42
43
  } from "./chunk/VN5BKHA2.jsx";
@@ -48,34 +49,33 @@ import {
48
49
  MenuList_default,
49
50
  Menu_default
50
51
  } from "./chunk/XD34JKSU.jsx";
52
+ import {
53
+ pagination_default
54
+ } from "./chunk/ELRAUORW.jsx";
51
55
  import {
52
56
  NavbarDropdown_default,
53
57
  NavbarItem_default,
54
58
  Navbar_default
55
- } from "./chunk/BBDVIXAH.jsx";
56
- import {
57
- pagination_default
58
- } from "./chunk/ELRAUORW.jsx";
59
+ } from "./chunk/55B7Q4NT.jsx";
59
60
  import {
60
61
  progress_default
61
62
  } from "./chunk/STKRVQR6.jsx";
62
63
  import {
63
64
  accordion_default
64
65
  } from "./chunk/QONDPQ2I.jsx";
65
- import {
66
- autocomplete_default
67
- } from "./chunk/C4YO33NN.jsx";
68
66
  import {
69
67
  avatar_default
70
68
  } from "./chunk/C4745OZS.jsx";
69
+ import {
70
+ autocomplete_default
71
+ } from "./chunk/C4YO33NN.jsx";
71
72
  import {
72
73
  BreadcrumbItem_default,
73
74
  Breadcrumb_default
74
75
  } from "./chunk/MMTAND25.jsx";
75
76
  import {
76
77
  button_default
77
- } from "./chunk/SCJSBRV2.jsx";
78
- import "./chunk/YAQK2KFY.jsx";
78
+ } from "./chunk/GA2HCFRS.jsx";
79
79
  import {
80
80
  PolymorphicButton_default,
81
81
  Polymorphic_default
@@ -95,6 +95,7 @@ export {
95
95
  Dropdown_default as Dropdown,
96
96
  DropdownItem_default as DropdownItem,
97
97
  DropdownMenu_default as DropdownMenu,
98
+ DropdownTrigger_default as DropdownTrigger,
98
99
  field_default as Field,
99
100
  input_default as Input,
100
101
  Menu_default as Menu,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathscale/ui",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "author": "pathscale",
5
5
  "repository": {
6
6
  "type": "git",