@pathscale/ui 0.0.6 → 0.0.8

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.
@@ -12,7 +12,7 @@ declare const accordionContainerVariants: {
12
12
  false: string;
13
13
  };
14
14
  }> & ClassProps) | undefined): string;
15
- variantKeys: ("disabled" | "expanded")[];
15
+ variantKeys: ("expanded" | "disabled")[];
16
16
  };
17
17
 
18
18
  type AccordionProps = {
@@ -29,7 +29,7 @@ declare const inputVariants: {
29
29
  false: string;
30
30
  };
31
31
  }> & ClassProps) | undefined): string;
32
- variantKeys: ("rounded" | "loading" | "color" | "expanded" | "hasLeftIcon" | "hasRightIcon")[];
32
+ variantKeys: ("expanded" | "rounded" | "loading" | "color" | "hasLeftIcon" | "hasRightIcon")[];
33
33
  };
34
34
 
35
35
  type InputProps = Partial<VariantProps<typeof inputVariants> & ClassProps & ComponentProps<"input">> & {
@@ -25,7 +25,7 @@ declare const paginationItemVariants: {
25
25
  false: string;
26
26
  };
27
27
  }> & ClassProps) | undefined): string;
28
- variantKeys: ("size" | "rounded" | "disabled" | "active" | "simple")[];
28
+ variantKeys: ("disabled" | "size" | "rounded" | "active" | "simple")[];
29
29
  };
30
30
 
31
31
  type PaginationProps = {
@@ -28,7 +28,7 @@ declare const selectVariants: {
28
28
  false: string;
29
29
  };
30
30
  }> & ClassProps) | undefined): string;
31
- variantKeys: ("size" | "rounded" | "loading" | "color" | "expanded")[];
31
+ variantKeys: ("expanded" | "size" | "rounded" | "loading" | "color")[];
32
32
  };
33
33
 
34
34
  type SelectProps = VariantProps<typeof selectVariants> & ClassProps & ComponentProps<"select"> & {
@@ -21,7 +21,7 @@ declare const switchVariants: {
21
21
  false: string;
22
22
  };
23
23
  }> & ClassProps) | undefined): string;
24
- variantKeys: ("size" | "rounded" | "outlined" | "disabled")[];
24
+ variantKeys: ("disabled" | "size" | "rounded" | "outlined")[];
25
25
  };
26
26
  declare const checkVariants: {
27
27
  (props?: (ConfigVariants<{
@@ -57,7 +57,7 @@ declare const checkVariants: {
57
57
  false: string;
58
58
  };
59
59
  }> & ClassProps) | undefined): string;
60
- variantKeys: ("size" | "rounded" | "outlined" | "color" | "disabled" | "passiveColor")[];
60
+ variantKeys: ("disabled" | "size" | "rounded" | "outlined" | "color" | "passiveColor")[];
61
61
  };
62
62
 
63
63
  type SwitchProps = {
@@ -24,7 +24,7 @@ declare const tabsNavVariants: {
24
24
  false: string;
25
25
  };
26
26
  }> & ClassProps) | undefined): string;
27
- variantKeys: ("size" | "type" | "expanded" | "alignment")[];
27
+ variantKeys: ("expanded" | "size" | "type" | "alignment")[];
28
28
  };
29
29
 
30
30
  type TabItem = {
@@ -1,5 +1,5 @@
1
1
  import { cva } from './HKS7ET6T.js';
2
- import { delegateEvents, createComponent, template, className, insert, addEventListener, effect, setAttribute } from 'solid-js/web';
2
+ import { delegateEvents, createComponent, template, className, insert, spread, mergeProps as mergeProps$1 } from 'solid-js/web';
3
3
  import { Show, mergeProps, splitProps, createSignal } from 'solid-js';
4
4
 
5
5
  // src/components/input/Input.styles.ts
@@ -76,9 +76,10 @@ var _tmpl$22 = /* @__PURE__ */ template(`<button type=button>`);
76
76
  var _tmpl$32 = /* @__PURE__ */ template(`<div><input>`);
77
77
  var Input = (props) => {
78
78
  const defaultedProps = mergeProps({
79
- type: "text"
79
+ type: "text",
80
+ placeholder: ""
80
81
  }, props);
81
- const [localProps, variantProps, otherProps] = splitProps(defaultedProps, ["type", "passwordReveal", "leftIcon", "rightIcon", "class", "value", "onInput", "placeholder", "name"], ["color", "rounded", "expanded", "loading", "hasLeftIcon", "hasRightIcon"]);
82
+ const [localProps, variantProps, otherProps] = splitProps(defaultedProps, ["type", "passwordReveal", "leftIcon", "rightIcon", "class", "value", "onInput", "name"], ["color", "rounded", "expanded", "loading", "hasLeftIcon", "hasRightIcon"]);
82
83
  const [showPassword, setShowPassword] = createSignal(false);
83
84
  const resolvedType = () => localProps.passwordReveal && showPassword() ? "text" : localProps.type ?? "text";
84
85
  const inputClass = inputVariants({
@@ -101,8 +102,24 @@ var Input = (props) => {
101
102
  return _el$2;
102
103
  }
103
104
  }), _el$3);
104
- addEventListener(_el$3, "input", localProps.onInput, true);
105
105
  className(_el$3, inputClass);
106
+ spread(_el$3, mergeProps$1({
107
+ get type() {
108
+ return resolvedType();
109
+ },
110
+ get ["aria-invalid"]() {
111
+ return variantProps.color === "danger" ? "true" : void 0;
112
+ },
113
+ get value() {
114
+ return localProps.value;
115
+ },
116
+ get onInput() {
117
+ return localProps.onInput;
118
+ },
119
+ get name() {
120
+ return localProps.name;
121
+ }
122
+ }, otherProps), false, false);
106
123
  insert(_el$, createComponent(Show, {
107
124
  get when() {
108
125
  return localProps.passwordReveal && !localProps.rightIcon;
@@ -130,25 +147,11 @@ var Input = (props) => {
130
147
  return _el$5;
131
148
  }
132
149
  }), null);
133
- effect((_p$) => {
134
- var _v$ = resolvedType(), _v$2 = variantProps.color === "danger" ? "true" : void 0, _v$3 = localProps.placeholder, _v$4 = localProps.name;
135
- _v$ !== _p$.e && setAttribute(_el$3, "type", _p$.e = _v$);
136
- _v$2 !== _p$.t && setAttribute(_el$3, "aria-invalid", _p$.t = _v$2);
137
- _v$3 !== _p$.a && setAttribute(_el$3, "placeholder", _p$.a = _v$3);
138
- _v$4 !== _p$.o && setAttribute(_el$3, "name", _p$.o = _v$4);
139
- return _p$;
140
- }, {
141
- e: void 0,
142
- t: void 0,
143
- a: void 0,
144
- o: void 0
145
- });
146
- effect(() => _el$3.value = localProps.value);
147
150
  return _el$;
148
151
  })();
149
152
  };
150
153
  var Input_default = Input;
151
- delegateEvents(["input", "click"]);
154
+ delegateEvents(["click"]);
152
155
 
153
156
  // src/components/input/index.ts
154
157
  var input_default = Input_default;
@@ -92,7 +92,7 @@ var EyeIcon_default = EyeIcon;
92
92
 
93
93
  // src/components/input/Input.tsx
94
94
  var Input = (props) => {
95
- const defaultedProps = mergeProps({ type: "text" }, props);
95
+ const defaultedProps = mergeProps({ type: "text", placeholder: "" }, props);
96
96
  const [localProps, variantProps, otherProps] = splitProps(
97
97
  defaultedProps,
98
98
  [
@@ -103,7 +103,6 @@ var Input = (props) => {
103
103
  "class",
104
104
  "value",
105
105
  "onInput",
106
- "placeholder",
107
106
  "name"
108
107
  ],
109
108
  ["color", "rounded", "expanded", "loading", "hasLeftIcon", "hasRightIcon"]
@@ -127,8 +126,8 @@ var Input = (props) => {
127
126
  aria-invalid={variantProps.color === "danger" ? "true" : void 0}
128
127
  value={localProps.value}
129
128
  onInput={localProps.onInput}
130
- placeholder={localProps.placeholder}
131
129
  name={localProps.name}
130
+ {...otherProps}
132
131
  />
133
132
 
134
133
  <Show2 when={localProps.passwordReveal && !localProps.rightIcon}>
@@ -7,7 +7,8 @@ import {
7
7
  splitProps,
8
8
  createSignal,
9
9
  Show,
10
- untrack
10
+ untrack,
11
+ createEffect
11
12
  } from "solid-js";
12
13
 
13
14
  // src/components/checkbox/Checkbox.styles.ts
@@ -37,12 +38,36 @@ var checkboxVariants = cva(
37
38
  }
38
39
  }
39
40
  );
40
- var checkboxMarkerVariants = cva([
41
- "inline-flex items-center justify-center w-5 h-5 rounded-sm border",
42
- "transition-colors duration-200",
43
- "border-gray-400 text-gray-800 dark:text-gray-200",
44
- "peer-disabled:opacity-50"
45
- ]);
41
+ var checkboxMarkerVariants = cva(
42
+ [
43
+ "inline-flex items-center justify-center rounded-sm border",
44
+ "transition-colors duration-200",
45
+ "peer-disabled:opacity-50"
46
+ ],
47
+ {
48
+ variants: {
49
+ size: {
50
+ sm: "w-4 h-4 text-sm",
51
+ md: "w-5 h-5 text-base",
52
+ lg: "w-6 h-6 text-lg"
53
+ },
54
+ color: {
55
+ primary: "bg-blue-600 border-blue-600",
56
+ success: "bg-green-600 border-green-600",
57
+ warning: "bg-yellow-400 border-yellow-400",
58
+ danger: "bg-red-600 border-red-600"
59
+ },
60
+ variant: {
61
+ colored: "text-white",
62
+ default: "border-gray-400 text-gray-800 dark:text-gray-200 bg-transparent"
63
+ }
64
+ },
65
+ defaultVariants: {
66
+ size: "md",
67
+ variant: "default"
68
+ }
69
+ }
70
+ );
46
71
  var checkboxInputClass = "peer absolute opacity-0 w-4 h-4";
47
72
  var checkboxLabelClass = "ml-2 text-gray-800 dark:text-gray-200";
48
73
 
@@ -93,9 +118,17 @@ var Checkbox = (props) => {
93
118
  ["class", ...checkboxVariants.variantKeys]
94
119
  );
95
120
  let inputRef;
121
+ const isControlled = localProps.checked !== void 0;
96
122
  const [status, setStatus] = createSignal(
97
- localProps.indeterminate ? "indeterminate" : localProps.defaultChecked ? "checked" : "unchecked"
123
+ localProps.indeterminate ? "indeterminate" : isControlled ? localProps.checked ? "checked" : "unchecked" : localProps.defaultChecked ? "checked" : "unchecked"
98
124
  );
125
+ createEffect(() => {
126
+ if (isControlled) {
127
+ setStatus(
128
+ localProps.indeterminate ? "indeterminate" : localProps.checked ? "checked" : "unchecked"
129
+ );
130
+ }
131
+ });
99
132
  const handleChange = (e) => {
100
133
  const input = e.currentTarget;
101
134
  if (input.indeterminate) {
@@ -134,7 +167,13 @@ var Checkbox = (props) => {
134
167
  onBlur={localProps.onBlur}
135
168
  />
136
169
 
137
- <span class={checkboxMarkerVariants()}>
170
+ <span
171
+ class={checkboxMarkerVariants({
172
+ size: variantProps.size,
173
+ color: status() !== "unchecked" ? variantProps.color : void 0,
174
+ variant: status() !== "unchecked" ? "colored" : "default"
175
+ })}
176
+ >
138
177
  <Show when={status() !== "unchecked"}>
139
178
  {status() === "indeterminate" ? <MinusIcon_default /> : <CheckIcon_default />}
140
179
  </Show>
@@ -1,6 +1,6 @@
1
1
  import { cva } from './HKS7ET6T.js';
2
2
  import { template, use, className, spread, mergeProps, insert, createComponent, memo, effect, setAttribute } from 'solid-js/web';
3
- import { splitProps, createSignal, Show, untrack } from 'solid-js';
3
+ import { splitProps, createSignal, createEffect, Show, untrack } from 'solid-js';
4
4
 
5
5
  // src/components/checkbox/Checkbox.styles.ts
6
6
  var checkboxVariants = cva(
@@ -29,12 +29,36 @@ var checkboxVariants = cva(
29
29
  }
30
30
  }
31
31
  );
32
- var checkboxMarkerVariants = cva([
33
- "inline-flex items-center justify-center w-5 h-5 rounded-sm border",
34
- "transition-colors duration-200",
35
- "border-gray-400 text-gray-800 dark:text-gray-200",
36
- "peer-disabled:opacity-50"
37
- ]);
32
+ var checkboxMarkerVariants = cva(
33
+ [
34
+ "inline-flex items-center justify-center rounded-sm border",
35
+ "transition-colors duration-200",
36
+ "peer-disabled:opacity-50"
37
+ ],
38
+ {
39
+ variants: {
40
+ size: {
41
+ sm: "w-4 h-4 text-sm",
42
+ md: "w-5 h-5 text-base",
43
+ lg: "w-6 h-6 text-lg"
44
+ },
45
+ color: {
46
+ primary: "bg-blue-600 border-blue-600",
47
+ success: "bg-green-600 border-green-600",
48
+ warning: "bg-yellow-400 border-yellow-400",
49
+ danger: "bg-red-600 border-red-600"
50
+ },
51
+ variant: {
52
+ colored: "text-white",
53
+ default: "border-gray-400 text-gray-800 dark:text-gray-200 bg-transparent"
54
+ }
55
+ },
56
+ defaultVariants: {
57
+ size: "md",
58
+ variant: "default"
59
+ }
60
+ }
61
+ );
38
62
  var checkboxInputClass = "peer absolute opacity-0 w-4 h-4";
39
63
  var checkboxLabelClass = "ml-2 text-gray-800 dark:text-gray-200";
40
64
  var _tmpl$ = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=3 stroke-linecap=round stroke-linejoin=round class="w-3.5 h-3.5"><polyline points="20 6 9 17 4 12">`);
@@ -49,7 +73,13 @@ var _tmpl$3 = /* @__PURE__ */ template(`<span>`);
49
73
  var _tmpl$22 = /* @__PURE__ */ template(`<label role=checkbox><input type=checkbox aria-hidden=true><span>`);
50
74
  var Checkbox = (props) => {
51
75
  const [localProps, variantProps, otherProps] = splitProps(props, ["label", "indeterminate", "defaultChecked", "checked", "onChange", "onFocus", "onBlur", "disabled"], ["class", ...checkboxVariants.variantKeys]);
52
- const [status, setStatus] = createSignal(localProps.indeterminate ? "indeterminate" : localProps.defaultChecked ? "checked" : "unchecked");
76
+ const isControlled = localProps.checked !== void 0;
77
+ const [status, setStatus] = createSignal(localProps.indeterminate ? "indeterminate" : isControlled ? localProps.checked ? "checked" : "unchecked" : localProps.defaultChecked ? "checked" : "unchecked");
78
+ createEffect(() => {
79
+ if (isControlled) {
80
+ setStatus(localProps.indeterminate ? "indeterminate" : localProps.checked ? "checked" : "unchecked");
81
+ }
82
+ });
53
83
  const handleChange = (e) => {
54
84
  const input = e.currentTarget;
55
85
  if (input.indeterminate) {
@@ -109,7 +139,11 @@ var Checkbox = (props) => {
109
139
  }
110
140
  }), null);
111
141
  effect((_p$) => {
112
- var _v$ = checkboxVariants(), _v$2 = status() === "indeterminate" ? "mixed" : status() === "checked", _v$3 = checkboxMarkerVariants();
142
+ var _v$ = checkboxVariants(), _v$2 = status() === "indeterminate" ? "mixed" : status() === "checked", _v$3 = checkboxMarkerVariants({
143
+ size: variantProps.size,
144
+ color: status() !== "unchecked" ? variantProps.color : void 0,
145
+ variant: status() !== "unchecked" ? "colored" : "default"
146
+ });
113
147
  _v$ !== _p$.e && className(_el$, _p$.e = _v$);
114
148
  _v$2 !== _p$.t && setAttribute(_el$, "aria-checked", _p$.t = _v$2);
115
149
  _v$3 !== _p$.a && className(_el$3, _p$.a = _v$3);
@@ -1,5 +1,5 @@
1
- import { A as Accordion } from '../../Accordion-nwuRbRRw.js';
2
- export { a as AccordionProps } from '../../Accordion-nwuRbRRw.js';
1
+ import { A as Accordion } from '../../Accordion-JZGWxBMK.js';
2
+ export { a as AccordionProps } from '../../Accordion-JZGWxBMK.js';
3
3
  import 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
@@ -1 +1 @@
1
- export { checkbox_default as default } from '../../chunk/VLJEQN2A.js';
1
+ export { checkbox_default as default } from '../../chunk/WYHYWDOM.js';
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  checkbox_default
3
- } from "../../chunk/Z5DP7GYE.jsx";
3
+ } from "../../chunk/T7IZ26YC.jsx";
4
4
  import "../../chunk/P7WPLZNA.jsx";
5
5
  export {
6
6
  checkbox_default as default
@@ -1,5 +1,5 @@
1
- import { I as Input } from '../../Input-X4gwIB-F.js';
2
- export { a as InputProps } from '../../Input-X4gwIB-F.js';
1
+ import { I as Input } from '../../Input-BGHHmBBR.js';
2
+ export { a as InputProps } from '../../Input-BGHHmBBR.js';
3
3
  import { Component } from 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
@@ -1 +1 @@
1
- export { EyeIcon_default as EyeIcon, input_default as default } from '../../chunk/FNXIOJJY.js';
1
+ export { EyeIcon_default as EyeIcon, input_default as default } from '../../chunk/O2IMHWMY.js';
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  EyeIcon_default,
3
3
  input_default
4
- } from "../../chunk/DGI3XY32.jsx";
4
+ } from "../../chunk/PNPC2OI3.jsx";
5
5
  import "../../chunk/P7WPLZNA.jsx";
6
6
  export {
7
7
  EyeIcon_default as EyeIcon,
@@ -34,7 +34,7 @@ declare const itemVariants: {
34
34
  false: string;
35
35
  };
36
36
  }> & ClassProps) | undefined): string;
37
- variantKeys: ("disabled" | "expanded" | "active")[];
37
+ variantKeys: ("expanded" | "disabled" | "active")[];
38
38
  };
39
39
 
40
40
  type MenuProps = {
@@ -1,5 +1,5 @@
1
- import { P as Pagination } from '../../Pagination-BlrjElGg.js';
2
- export { a as PaginationProps } from '../../Pagination-BlrjElGg.js';
1
+ import { P as Pagination } from '../../Pagination-CJtlFMHy.js';
2
+ export { a as PaginationProps } from '../../Pagination-CJtlFMHy.js';
3
3
  import 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
@@ -1,5 +1,5 @@
1
- import { S as Select } from '../../Select-CP-TUHJv.js';
2
- export { a as SelectProps } from '../../Select-CP-TUHJv.js';
1
+ import { S as Select } from '../../Select-CWCDBvec.js';
2
+ export { a as SelectProps } from '../../Select-CWCDBvec.js';
3
3
  import 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
@@ -1,5 +1,5 @@
1
- import { S as Switch } from '../../Switch-B6dN2G97.js';
2
- export { a as SwitchProps } from '../../Switch-B6dN2G97.js';
1
+ import { S as Switch } from '../../Switch-CW6QtO1Y.js';
2
+ export { a as SwitchProps } from '../../Switch-CW6QtO1Y.js';
3
3
  import 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
@@ -1,5 +1,5 @@
1
- import { T as Tabs } from '../../Tabs-BNR3p92D.js';
2
- export { a as TabsProps } from '../../Tabs-BNR3p92D.js';
1
+ import { T as Tabs } from '../../Tabs-BEnRV6GG.js';
2
+ export { a as TabsProps } from '../../Tabs-BEnRV6GG.js';
3
3
  import 'solid-js';
4
4
  import '../../classes-B_S9K-9I.js';
5
5
 
package/dist/index.d.ts CHANGED
@@ -1,16 +1,16 @@
1
1
  export { A as Avatar } from './Avatar-CzIirpVq.js';
2
2
  export { B as Button } from './Button-B50OLXuV.js';
3
- export { I as Input } from './Input-X4gwIB-F.js';
3
+ export { I as Input } from './Input-BGHHmBBR.js';
4
4
  export { T as Textarea } from './Textarea-Cpdk7m6S.js';
5
5
  export { P as Progress } from './Progress-gN0xqhAF.js';
6
6
  export { U as Upload } from './Upload-CRljD5jf.js';
7
- export { A as Accordion } from './Accordion-nwuRbRRw.js';
8
- export { P as Pagination } from './Pagination-BlrjElGg.js';
9
- export { T as Tabs } from './Tabs-BNR3p92D.js';
7
+ export { A as Accordion } from './Accordion-JZGWxBMK.js';
8
+ export { P as Pagination } from './Pagination-CJtlFMHy.js';
9
+ export { T as Tabs } from './Tabs-BEnRV6GG.js';
10
10
  export { T as Tooltip } from './Tooltip-BfPongoz.js';
11
11
  export { T as Tag } from './Tag-BPrhn-Ne.js';
12
- export { S as Select } from './Select-CP-TUHJv.js';
13
- export { S as Switch } from './Switch-B6dN2G97.js';
12
+ export { S as Select } from './Select-CWCDBvec.js';
13
+ 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';
package/dist/index.js CHANGED
@@ -1,25 +1,25 @@
1
- export { tooltip_default as Tooltip } from './chunk/5KABSQPM.js';
2
1
  export { Toaster_default as Toaster, toast_default as toast } from './chunk/JWRGKHDO.js';
2
+ export { tooltip_default as Tooltip } from './chunk/5KABSQPM.js';
3
3
  export { upload_default as Upload } from './chunk/YDEDUOFM.js';
4
- export { Menu_default as Menu, MenuItem_default as MenuItem, MenuList_default as MenuList } from './chunk/3VOILEMN.js';
4
+ export { select_default as Select } from './chunk/OMRJVDZV.js';
5
5
  export { switch_default as Switch } from './chunk/6B7HOWQD.js';
6
+ export { steps_default as Steps } from './chunk/TT2JYGLU.js';
6
7
  export { table_default as Table } from './chunk/QYEMOKUG.js';
7
8
  export { tabs_default as Tabs } from './chunk/WOT36Q7O.js';
8
9
  export { tag_default as Tag } from './chunk/CJZGTNJZ.js';
9
10
  export { textarea_default as Textarea } from './chunk/EB7KXR65.js';
10
- export { select_default as Select } from './chunk/OMRJVDZV.js';
11
11
  export { timeline_default as Timeline } from './chunk/WUZETUQR.js';
12
- export { field_default as Field } from './chunk/MAX47D6F.js';
13
12
  export { Dropdown_default as Dropdown, DropdownItem_default as DropdownItem, DropdownMenu_default as DropdownMenu } from './chunk/7ROVLN3J.js';
14
- export { input_default as Input } from './chunk/FNXIOJJY.js';
15
- export { Navbar_default as Navbar, NavbarDropdown_default as NavbarDropdown, NavbarItem_default as NavbarItem } from './chunk/OSJ3P7PI.js';
13
+ export { field_default as Field } from './chunk/MAX47D6F.js';
14
+ export { input_default as Input } from './chunk/O2IMHWMY.js';
15
+ export { Menu_default as Menu, MenuItem_default as MenuItem, MenuList_default as MenuList } from './chunk/3VOILEMN.js';
16
16
  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';
17
18
  export { progress_default as Progress } from './chunk/GMIXRYN3.js';
18
- export { steps_default as Steps } from './chunk/TT2JYGLU.js';
19
19
  export { accordion_default as Accordion } from './chunk/NZKPDBTE.js';
20
- export { avatar_default as Avatar } from './chunk/MI773TMC.js';
21
20
  export { autocomplete_default as Autocomplete } from './chunk/MYERRMTM.js';
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
23
  export { button_default as Button } from './chunk/YMO6RPS6.js';
24
24
  export { Polymorphic_default as Polymorphic, PolymorphicButton_default as PolymorphicButton } from './chunk/G6RG4LR7.js';
25
- export { checkbox_default as Checkbox } from './chunk/VLJEQN2A.js';
25
+ export { checkbox_default as Checkbox } from './chunk/WYHYWDOM.js';
package/dist/index.jsx CHANGED
@@ -8,12 +8,12 @@ import {
8
8
  import {
9
9
  upload_default
10
10
  } from "./chunk/QHJOIUYT.jsx";
11
- import {
12
- select_default
13
- } from "./chunk/F33TSIEQ.jsx";
14
11
  import {
15
12
  steps_default
16
13
  } from "./chunk/LAQPAV5I.jsx";
14
+ import {
15
+ select_default
16
+ } from "./chunk/F33TSIEQ.jsx";
17
17
  import {
18
18
  switch_default
19
19
  } from "./chunk/5R7S7TXL.jsx";
@@ -42,17 +42,17 @@ import {
42
42
  } from "./chunk/VN5BKHA2.jsx";
43
43
  import {
44
44
  input_default
45
- } from "./chunk/DGI3XY32.jsx";
46
- import {
47
- NavbarDropdown_default,
48
- NavbarItem_default,
49
- Navbar_default
50
- } from "./chunk/BBDVIXAH.jsx";
45
+ } from "./chunk/PNPC2OI3.jsx";
51
46
  import {
52
47
  MenuItem_default,
53
48
  MenuList_default,
54
49
  Menu_default
55
50
  } from "./chunk/XD34JKSU.jsx";
51
+ import {
52
+ NavbarDropdown_default,
53
+ NavbarItem_default,
54
+ Navbar_default
55
+ } from "./chunk/BBDVIXAH.jsx";
56
56
  import {
57
57
  pagination_default
58
58
  } from "./chunk/ELRAUORW.jsx";
@@ -82,7 +82,7 @@ import {
82
82
  } from "./chunk/KACNXPUM.jsx";
83
83
  import {
84
84
  checkbox_default
85
- } from "./chunk/Z5DP7GYE.jsx";
85
+ } from "./chunk/T7IZ26YC.jsx";
86
86
  import "./chunk/P7WPLZNA.jsx";
87
87
  export {
88
88
  accordion_default as Accordion,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathscale/ui",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "author": "pathscale",
5
5
  "repository": {
6
6
  "type": "git",