bits-ui 0.11.7 → 0.11.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.
- package/dist/bits/index.d.ts +3 -2
- package/dist/bits/index.js +3 -2
- package/dist/bits/pin-input/_export.types.d.ts +1 -0
- package/dist/bits/pin-input/_export.types.js +1 -0
- package/dist/bits/pin-input/_types.d.ts +22 -0
- package/dist/bits/pin-input/_types.js +1 -0
- package/dist/bits/pin-input/components/pin-input-hidden-input.svelte +23 -0
- package/dist/bits/pin-input/components/pin-input-hidden-input.svelte.d.ts +31 -0
- package/dist/bits/pin-input/components/pin-input-input.svelte +29 -0
- package/dist/bits/pin-input/components/pin-input-input.svelte.d.ts +27 -0
- package/dist/bits/pin-input/components/pin-input.svelte +66 -0
- package/dist/bits/pin-input/components/pin-input.svelte.d.ts +29 -0
- package/dist/bits/pin-input/ctx.d.ts +63 -0
- package/dist/bits/pin-input/ctx.js +17 -0
- package/dist/bits/pin-input/index.d.ts +4 -0
- package/dist/bits/pin-input/index.js +4 -0
- package/dist/bits/pin-input/types.d.ts +16 -0
- package/dist/bits/pin-input/types.js +1 -0
- package/package.json +2 -2
package/dist/bits/index.d.ts
CHANGED
|
@@ -8,15 +8,16 @@ export * as Checkbox from "./checkbox/index.js";
|
|
|
8
8
|
export * as Collapsible from "./collapsible/index.js";
|
|
9
9
|
export * as ContextMenu from "./context-menu/index.js";
|
|
10
10
|
export * as DateField from "./date-field/index.js";
|
|
11
|
-
export * as DateRangeField from "./date-range-field/index.js";
|
|
12
11
|
export * as DatePicker from "./date-picker/index.js";
|
|
12
|
+
export * as DateRangeField from "./date-range-field/index.js";
|
|
13
13
|
export * as DateRangePicker from "./date-range-picker/index.js";
|
|
14
14
|
export * as Dialog from "./dialog/index.js";
|
|
15
15
|
export * as DropdownMenu from "./dropdown-menu/index.js";
|
|
16
|
-
export * as LinkPreview from "./link-preview/index.js";
|
|
17
16
|
export * as Label from "./label/index.js";
|
|
17
|
+
export * as LinkPreview from "./link-preview/index.js";
|
|
18
18
|
export * as Menubar from "./menubar/index.js";
|
|
19
19
|
export * as Pagination from "./pagination/index.js";
|
|
20
|
+
export * as PinInput from "./pin-input/index.js";
|
|
20
21
|
export * as Popover from "./popover/index.js";
|
|
21
22
|
export * as Progress from "./progress/index.js";
|
|
22
23
|
export * as RadioGroup from "./radio-group/index.js";
|
package/dist/bits/index.js
CHANGED
|
@@ -8,15 +8,16 @@ export * as Checkbox from "./checkbox/index.js";
|
|
|
8
8
|
export * as Collapsible from "./collapsible/index.js";
|
|
9
9
|
export * as ContextMenu from "./context-menu/index.js";
|
|
10
10
|
export * as DateField from "./date-field/index.js";
|
|
11
|
-
export * as DateRangeField from "./date-range-field/index.js";
|
|
12
11
|
export * as DatePicker from "./date-picker/index.js";
|
|
12
|
+
export * as DateRangeField from "./date-range-field/index.js";
|
|
13
13
|
export * as DateRangePicker from "./date-range-picker/index.js";
|
|
14
14
|
export * as Dialog from "./dialog/index.js";
|
|
15
15
|
export * as DropdownMenu from "./dropdown-menu/index.js";
|
|
16
|
-
export * as LinkPreview from "./link-preview/index.js";
|
|
17
16
|
export * as Label from "./label/index.js";
|
|
17
|
+
export * as LinkPreview from "./link-preview/index.js";
|
|
18
18
|
export * as Menubar from "./menubar/index.js";
|
|
19
19
|
export * as Pagination from "./pagination/index.js";
|
|
20
|
+
export * as PinInput from "./pin-input/index.js";
|
|
20
21
|
export * as Popover from "./popover/index.js";
|
|
21
22
|
export * as Progress from "./progress/index.js";
|
|
22
23
|
export * as RadioGroup from "./radio-group/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Props, InputProps as PinInputProps, HiddenInputProps as PinInputHiddenInputProps } from "./types.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* We define prop types without the HTMLAttributes here so that we can use them
|
|
3
|
+
* to type-check our API documentation, which requires we document each prop,
|
|
4
|
+
* but we don't want to document the HTML attributes.
|
|
5
|
+
*/
|
|
6
|
+
import type { CreatePinInputProps } from "@melt-ui/svelte";
|
|
7
|
+
import type { AsChild, Expand, OmitIds, OmitValue, OnChangeFn } from "../../internal/index.js";
|
|
8
|
+
type Props = Expand<OmitIds<OmitValue<CreatePinInputProps> & {
|
|
9
|
+
/**
|
|
10
|
+
* The value pin-input, which is an array of strings.
|
|
11
|
+
*
|
|
12
|
+
* You can bind to this to programmatically control the value.
|
|
13
|
+
*/
|
|
14
|
+
value?: CreatePinInputProps["defaultValue"];
|
|
15
|
+
/**
|
|
16
|
+
* A callback function called when the value changes.
|
|
17
|
+
*/
|
|
18
|
+
onValueChange?: OnChangeFn<CreatePinInputProps["defaultValue"]>;
|
|
19
|
+
} & AsChild>>;
|
|
20
|
+
type InputProps = AsChild;
|
|
21
|
+
type HiddenInputProps = AsChild;
|
|
22
|
+
export type { Props, InputProps, HiddenInputProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script>import { melt } from "@melt-ui/svelte";
|
|
2
|
+
import { getCtx, getAttrs } from "../ctx.js";
|
|
3
|
+
export let asChild = false;
|
|
4
|
+
const {
|
|
5
|
+
elements: { hiddenInput },
|
|
6
|
+
options: { disabled }
|
|
7
|
+
} = getCtx();
|
|
8
|
+
$:
|
|
9
|
+
attrs = {
|
|
10
|
+
...getAttrs("hidden-input"),
|
|
11
|
+
disabled: $disabled ? true : void 0
|
|
12
|
+
};
|
|
13
|
+
$:
|
|
14
|
+
builder = $hiddenInput;
|
|
15
|
+
$:
|
|
16
|
+
Object.assign(builder, attrs);
|
|
17
|
+
</script>
|
|
18
|
+
|
|
19
|
+
{#if asChild}
|
|
20
|
+
<slot {builder} />
|
|
21
|
+
{:else}
|
|
22
|
+
<input {...builder} use:builder.action {...$$restProps} />
|
|
23
|
+
{/if}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
import type { HiddenInputProps } from "../types.js";
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: HiddenInputProps;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {
|
|
10
|
+
builder: {
|
|
11
|
+
value: string;
|
|
12
|
+
name: string | undefined;
|
|
13
|
+
type: string;
|
|
14
|
+
'aria-hidden': boolean;
|
|
15
|
+
hidden: boolean;
|
|
16
|
+
tabIndex: number;
|
|
17
|
+
style: string;
|
|
18
|
+
} & {
|
|
19
|
+
[x: `data-melt-${string}`]: "";
|
|
20
|
+
} & {
|
|
21
|
+
action: import("svelte/action").Action<any, any, Record<never, any>>;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export type PinInputHiddenInputProps = typeof __propDef.props;
|
|
27
|
+
export type PinInputHiddenInputEvents = typeof __propDef.events;
|
|
28
|
+
export type PinInputHiddenInputSlots = typeof __propDef.slots;
|
|
29
|
+
export default class PinInputHiddenInput extends SvelteComponent<PinInputHiddenInputProps, PinInputHiddenInputEvents, PinInputHiddenInputSlots> {
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<script>import { melt } from "@melt-ui/svelte";
|
|
2
|
+
import { getCtx, getAttrs } from "../ctx.js";
|
|
3
|
+
import { createDispatcher } from "../../../internal/events.js";
|
|
4
|
+
export let asChild = false;
|
|
5
|
+
const {
|
|
6
|
+
elements: { input }
|
|
7
|
+
} = getCtx();
|
|
8
|
+
const dispatch = createDispatcher();
|
|
9
|
+
const attrs = getAttrs("input");
|
|
10
|
+
$:
|
|
11
|
+
builder = $input();
|
|
12
|
+
$:
|
|
13
|
+
Object.assign(builder, attrs);
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
{#if asChild}
|
|
17
|
+
<slot {builder} />
|
|
18
|
+
{:else}
|
|
19
|
+
<input
|
|
20
|
+
{...builder} use:builder.action
|
|
21
|
+
{...$$restProps}
|
|
22
|
+
on:m-keydown={dispatch}
|
|
23
|
+
on:m-input={dispatch}
|
|
24
|
+
on:m-paste={dispatch}
|
|
25
|
+
on:m-change={dispatch}
|
|
26
|
+
on:m-focus={dispatch}
|
|
27
|
+
on:m-blur={dispatch}
|
|
28
|
+
/>
|
|
29
|
+
{/if}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
import type { InputEvents, InputProps } from "../types.js";
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: InputProps;
|
|
5
|
+
slots: {
|
|
6
|
+
default: {
|
|
7
|
+
builder: (() => {
|
|
8
|
+
'data-complete': string | undefined;
|
|
9
|
+
placeholder: string;
|
|
10
|
+
disabled: boolean | undefined;
|
|
11
|
+
type: "text" | "password";
|
|
12
|
+
value: string;
|
|
13
|
+
}) & {
|
|
14
|
+
[x: `data-melt-${string}`]: "";
|
|
15
|
+
} & {
|
|
16
|
+
action: (node: HTMLInputElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"input" | "keydown" | "blur" | "change" | "focus" | "paste">;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
events: InputEvents;
|
|
21
|
+
};
|
|
22
|
+
export type PinInputInputProps = typeof __propDef.props;
|
|
23
|
+
export type PinInputInputEvents = typeof __propDef.events;
|
|
24
|
+
export type PinInputInputSlots = typeof __propDef.slots;
|
|
25
|
+
export default class PinInputInput extends SvelteComponent<PinInputInputProps, PinInputInputEvents, PinInputInputSlots> {
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<script>import { melt } from "@melt-ui/svelte";
|
|
2
|
+
import { setCtx, getAttrs } from "../ctx.js";
|
|
3
|
+
import { derived } from "svelte/store";
|
|
4
|
+
export let placeholder = void 0;
|
|
5
|
+
export let value = void 0;
|
|
6
|
+
export let name = void 0;
|
|
7
|
+
export let disabled = void 0;
|
|
8
|
+
export let type = "text";
|
|
9
|
+
export let onValueChange = void 0;
|
|
10
|
+
export let id = void 0;
|
|
11
|
+
export let asChild = false;
|
|
12
|
+
const {
|
|
13
|
+
elements: { root },
|
|
14
|
+
states: { value: localValue },
|
|
15
|
+
updateOption,
|
|
16
|
+
ids
|
|
17
|
+
} = setCtx({
|
|
18
|
+
placeholder,
|
|
19
|
+
defaultValue: value,
|
|
20
|
+
name,
|
|
21
|
+
disabled,
|
|
22
|
+
type,
|
|
23
|
+
onValueChange: ({ next }) => {
|
|
24
|
+
if (value !== next) {
|
|
25
|
+
onValueChange?.(next);
|
|
26
|
+
value = next;
|
|
27
|
+
}
|
|
28
|
+
return next;
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
$:
|
|
32
|
+
value !== void 0 && localValue.set(value);
|
|
33
|
+
const attrs = getAttrs("root");
|
|
34
|
+
$:
|
|
35
|
+
updateOption("placeholder", placeholder);
|
|
36
|
+
$:
|
|
37
|
+
updateOption("name", name);
|
|
38
|
+
$:
|
|
39
|
+
updateOption("disabled", disabled);
|
|
40
|
+
$:
|
|
41
|
+
updateOption("type", type);
|
|
42
|
+
$:
|
|
43
|
+
builder = $root;
|
|
44
|
+
$:
|
|
45
|
+
Object.assign(builder, attrs);
|
|
46
|
+
const idValues = derived([ids.root], ([$menubarId]) => ({
|
|
47
|
+
menubar: $menubarId
|
|
48
|
+
}));
|
|
49
|
+
$:
|
|
50
|
+
if (id) {
|
|
51
|
+
ids.root.set(id);
|
|
52
|
+
}
|
|
53
|
+
$:
|
|
54
|
+
slotProps = {
|
|
55
|
+
builder,
|
|
56
|
+
ids: $idValues
|
|
57
|
+
};
|
|
58
|
+
</script>
|
|
59
|
+
|
|
60
|
+
{#if asChild}
|
|
61
|
+
<slot {...slotProps} />
|
|
62
|
+
{:else}
|
|
63
|
+
<div {...builder} use:builder.action {...$$restProps}>
|
|
64
|
+
<slot {...slotProps} />
|
|
65
|
+
</div>
|
|
66
|
+
{/if}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
import type { Props } from "../types.js";
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: Props;
|
|
5
|
+
events: {
|
|
6
|
+
[evt: string]: CustomEvent<any>;
|
|
7
|
+
};
|
|
8
|
+
slots: {
|
|
9
|
+
default: {
|
|
10
|
+
builder: {
|
|
11
|
+
id: string;
|
|
12
|
+
'data-complete': string | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
[x: `data-melt-${string}`]: "";
|
|
15
|
+
} & {
|
|
16
|
+
action: import("svelte/action").Action<any, any, Record<never, any>>;
|
|
17
|
+
};
|
|
18
|
+
ids: {
|
|
19
|
+
menubar: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export type PinInputProps = typeof __propDef.props;
|
|
25
|
+
export type PinInputEvents = typeof __propDef.events;
|
|
26
|
+
export type PinInputSlots = typeof __propDef.slots;
|
|
27
|
+
export default class PinInput extends SvelteComponent<PinInputProps, PinInputEvents, PinInputSlots> {
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
2
|
+
import { type PinInput as PinInputReturn, type CreatePinInputProps as PinInputProps } from "@melt-ui/svelte";
|
|
3
|
+
export declare const getAttrs: (part: "input" | "root" | "hidden-input") => Record<string, string>;
|
|
4
|
+
export declare function setCtx(props: PinInputProps): {
|
|
5
|
+
updateOption: <K extends string, V extends unknown>(key: K, value: V | undefined) => void;
|
|
6
|
+
ids: import("@melt-ui/svelte/internal/helpers").ToWritableStores<{
|
|
7
|
+
root: string;
|
|
8
|
+
}>;
|
|
9
|
+
elements: {
|
|
10
|
+
root: import("@melt-ui/svelte/internal/helpers").ExplicitBuilderReturn<[{
|
|
11
|
+
update: (updater: import("svelte/store").Updater<string[]>, sideEffect?: ((newValue: string[]) => void) | undefined) => void;
|
|
12
|
+
set: (this: void, value: string[]) => void;
|
|
13
|
+
subscribe(this: void, run: import("svelte/store").Subscriber<string[]>, invalidate?: import("svelte/store").Invalidator<string[]> | undefined): import("svelte/store").Unsubscriber;
|
|
14
|
+
}, import("svelte/store").Writable<string>], import("svelte/action").Action<any, any, Record<never, any>>, ([$value, $rootId]: [string[], string]) => {
|
|
15
|
+
id: string;
|
|
16
|
+
'data-complete': string | undefined;
|
|
17
|
+
}, string>;
|
|
18
|
+
input: import("@melt-ui/svelte/internal/helpers").ExplicitBuilderReturn<[{
|
|
19
|
+
update: (updater: import("svelte/store").Updater<string[]>, sideEffect?: ((newValue: string[]) => void) | undefined) => void;
|
|
20
|
+
set: (this: void, value: string[]) => void;
|
|
21
|
+
subscribe(this: void, run: import("svelte/store").Subscriber<string[]>, invalidate?: import("svelte/store").Invalidator<string[]> | undefined): import("svelte/store").Unsubscriber;
|
|
22
|
+
}, import("svelte/store").Writable<string>, import("svelte/store").Writable<boolean>, import("svelte/store").Writable<"text" | "password">], (node: HTMLInputElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"input" | "keydown" | "blur" | "change" | "focus" | "paste">, ([$value, $placeholder, $disabled, $type]: [string[], string, boolean, "text" | "password"]) => () => {
|
|
23
|
+
'data-complete': string | undefined;
|
|
24
|
+
placeholder: string;
|
|
25
|
+
disabled: boolean | undefined;
|
|
26
|
+
type: "text" | "password";
|
|
27
|
+
value: string;
|
|
28
|
+
}, string>;
|
|
29
|
+
hiddenInput: import("@melt-ui/svelte/internal/helpers").ExplicitBuilderReturn<[import("svelte/store").Readable<string>, import("svelte/store").Writable<string | undefined>], import("svelte/action").Action<any, any, Record<never, any>>, ([$valueStr, $nameStore]: [string, string | undefined]) => {
|
|
30
|
+
value: string;
|
|
31
|
+
name: string | undefined;
|
|
32
|
+
type: string;
|
|
33
|
+
'aria-hidden': boolean;
|
|
34
|
+
hidden: boolean;
|
|
35
|
+
tabIndex: number;
|
|
36
|
+
style: string;
|
|
37
|
+
}, string>;
|
|
38
|
+
};
|
|
39
|
+
states: {
|
|
40
|
+
value: {
|
|
41
|
+
update: (updater: import("svelte/store").Updater<string[]>, sideEffect?: ((newValue: string[]) => void) | undefined) => void;
|
|
42
|
+
set: (this: void, value: string[]) => void;
|
|
43
|
+
subscribe(this: void, run: import("svelte/store").Subscriber<string[]>, invalidate?: import("svelte/store").Invalidator<string[]> | undefined): import("svelte/store").Unsubscriber;
|
|
44
|
+
};
|
|
45
|
+
valueStr: import("svelte/store").Readable<string>;
|
|
46
|
+
};
|
|
47
|
+
helpers: {
|
|
48
|
+
clear: () => void;
|
|
49
|
+
};
|
|
50
|
+
options: import("@melt-ui/svelte/internal/helpers").ToWritableStores<Omit<{
|
|
51
|
+
placeholder: string;
|
|
52
|
+
name: string | undefined;
|
|
53
|
+
disabled: boolean;
|
|
54
|
+
type: "text" | "password";
|
|
55
|
+
defaultValue: string[];
|
|
56
|
+
value?: import("svelte/store").Writable<string[]> | undefined;
|
|
57
|
+
onValueChange?: import("@melt-ui/svelte/internal/helpers").ChangeFn<string[]> | undefined;
|
|
58
|
+
ids?: Partial<{
|
|
59
|
+
root: string;
|
|
60
|
+
}> | undefined;
|
|
61
|
+
}, "value" | "ids">>;
|
|
62
|
+
};
|
|
63
|
+
export declare function getCtx(): PinInputReturn;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { createBitAttrs, getOptionUpdater, removeUndefined } from "../../internal/index.js";
|
|
2
|
+
import { createPinInput } from "@melt-ui/svelte";
|
|
3
|
+
import { getContext, setContext } from "svelte";
|
|
4
|
+
const NAME = "pin-input";
|
|
5
|
+
const PARTS = ["root", "input", "hidden-input"];
|
|
6
|
+
export const getAttrs = createBitAttrs(NAME, PARTS);
|
|
7
|
+
export function setCtx(props) {
|
|
8
|
+
const pinInput = createPinInput(removeUndefined(props));
|
|
9
|
+
setContext(NAME, pinInput);
|
|
10
|
+
return {
|
|
11
|
+
...pinInput,
|
|
12
|
+
updateOption: getOptionUpdater(pinInput.options)
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export function getCtx() {
|
|
16
|
+
return getContext(NAME);
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { HTMLDivAttributes } from "../../internal/index.js";
|
|
2
|
+
import type { CustomEventHandler } from "../..";
|
|
3
|
+
import type { HTMLInputAttributes } from "svelte/elements";
|
|
4
|
+
import type * as I from "./_types.js";
|
|
5
|
+
type Props = I.Props & HTMLDivAttributes;
|
|
6
|
+
type InputProps = I.InputProps & HTMLInputAttributes;
|
|
7
|
+
type InputEvents = {
|
|
8
|
+
keydown: CustomEventHandler<KeyboardEvent, HTMLInputElement>;
|
|
9
|
+
input: CustomEventHandler<InputEvent, HTMLInputElement>;
|
|
10
|
+
paste: CustomEventHandler<ClipboardEvent, HTMLInputElement>;
|
|
11
|
+
change: CustomEventHandler<Event, HTMLInputElement>;
|
|
12
|
+
focus: CustomEventHandler<FocusEvent, HTMLInputElement>;
|
|
13
|
+
blur: CustomEventHandler<FocusEvent, HTMLInputElement>;
|
|
14
|
+
};
|
|
15
|
+
type HiddenInputProps = I.HiddenInputProps & HTMLInputAttributes;
|
|
16
|
+
export type { Props, InputProps, HiddenInputProps, InputEvents };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bits-ui",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "github:huntabyte/bits-ui",
|
|
6
6
|
"exports": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"type": "module",
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"@internationalized/date": "^3.5.0",
|
|
77
|
-
"@melt-ui/svelte": "0.65.
|
|
77
|
+
"@melt-ui/svelte": "0.65.2",
|
|
78
78
|
"nanoid": "^5.0.4"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|