@nasa-jpl/stellar-svelte 2.0.0-alpha.50 → 2.0.0-alpha.51
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/components/ui/alert-dialog/alert-dialog-cancel.svelte +8 -8
- package/dist/components/ui/alert-dialog/alert-dialog-cancel.svelte.d.ts +1 -1
- package/dist/components/ui/toggle-group/index.d.ts +1 -1
- package/dist/components/ui/toggle-group/toggle-group-item.svelte.d.ts +1 -1
- package/dist/components/ui/toggle-group/toggle-group.svelte.d.ts +1 -1
- package/dist/index.css +5525 -332
- package/package.json +2 -2
- package/tailwind.config.ts +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<script>import {
|
|
2
|
-
import { buttonVariants } from "../button/index.js";
|
|
1
|
+
<script>import { buttonVariants } from "../button/index.js";
|
|
3
2
|
import { cn } from "../../../utils.js";
|
|
3
|
+
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
4
4
|
let className = void 0;
|
|
5
5
|
export { className as class };
|
|
6
6
|
</script>
|
|
7
7
|
|
|
8
8
|
<AlertDialogPrimitive.Cancel
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
class={cn(buttonVariants({ variant: 'outline', size: 'lg' }), 'mt-2 sm:mt-0', className)}
|
|
10
|
+
{...$$restProps}
|
|
11
|
+
on:click
|
|
12
|
+
on:keydown
|
|
13
|
+
let:builder
|
|
14
14
|
>
|
|
15
|
-
|
|
15
|
+
<slot {builder} />
|
|
16
16
|
</AlertDialogPrimitive.Cancel>
|
|
@@ -6,6 +6,6 @@ export type ToggleVariants = VariantProps<typeof toggleVariants>;
|
|
|
6
6
|
export declare function setToggleGroupCtx(props: ToggleVariants): void;
|
|
7
7
|
export declare function getToggleGroupCtx(): {
|
|
8
8
|
variant?: "default" | "outline" | undefined;
|
|
9
|
-
size?: "default" | "
|
|
9
|
+
size?: "default" | "xs" | "sm" | "lg" | undefined;
|
|
10
10
|
};
|
|
11
11
|
export { Item, Root, Root as ToggleGroup, Item as ToggleGroupItem, };
|
|
@@ -7,7 +7,7 @@ declare const __propDef: {
|
|
|
7
7
|
el?: HTMLButtonElement | undefined;
|
|
8
8
|
} & import("svelte/elements.js").HTMLButtonAttributes & {
|
|
9
9
|
variant?: "default" | "outline" | undefined;
|
|
10
|
-
size?: "default" | "
|
|
10
|
+
size?: "default" | "xs" | "sm" | "lg" | undefined;
|
|
11
11
|
};
|
|
12
12
|
events: {
|
|
13
13
|
[evt: string]: CustomEvent<any>;
|
|
@@ -12,7 +12,7 @@ declare class __sveltets_Render<T extends 'single' | 'multiple'> {
|
|
|
12
12
|
el?: HTMLDivElement | undefined;
|
|
13
13
|
} & import("bits-ui/dist/internal/types.js").HTMLDivAttributes & {
|
|
14
14
|
variant?: "default" | "outline" | undefined;
|
|
15
|
-
size?: "default" | "
|
|
15
|
+
size?: "default" | "xs" | "sm" | "lg" | undefined;
|
|
16
16
|
};
|
|
17
17
|
events(): {} & {
|
|
18
18
|
[evt: string]: CustomEvent<any>;
|