ui-ingredients 0.0.33 → 0.0.35
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +57 -60
- package/dist/qr-code/context.svelte.d.ts +2 -2
- package/dist/qr-code/create-qr-code.svelte.d.ts +3 -3
- package/dist/qr-code/frame.svelte +2 -2
- package/dist/qr-code/frame.svelte.d.ts +1 -1
- package/dist/qr-code/index.d.ts +5 -5
- package/dist/qr-code/index.js +1 -1
- package/dist/qr-code/overlay.svelte +2 -2
- package/dist/qr-code/overlay.svelte.d.ts +1 -1
- package/dist/qr-code/pattern.svelte +2 -2
- package/dist/qr-code/pattern.svelte.d.ts +1 -1
- package/dist/qr-code/root.svelte +8 -8
- package/dist/qr-code/root.svelte.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -12,70 +12,67 @@ npm install ui-ingredients
|
|
12
12
|
|
13
13
|
```svelte
|
14
14
|
<script>
|
15
|
-
import {
|
16
|
-
|
17
|
-
let {data} = $props();
|
15
|
+
import {Dialog, Portal} from 'ui-ingredients';
|
16
|
+
import {XCloseIcon} from '$lib/icons';
|
18
17
|
</script>
|
19
18
|
|
20
|
-
<
|
21
|
-
<
|
22
|
-
|
23
|
-
|
24
|
-
<
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
<
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
</
|
19
|
+
<Dialog.Root>
|
20
|
+
<Dialog.Trigger>Open</Dialog.Trigger>
|
21
|
+
|
22
|
+
<Portal>
|
23
|
+
<Dialog.Backdrop />
|
24
|
+
<Dialog.Positioner>
|
25
|
+
<Dialog.Content>
|
26
|
+
<Dialog.Title>Title</Dialog.Title>
|
27
|
+
<Dialog.Description>Description</Dialog.Description>
|
28
|
+
<Dialog.CloseTrigger>
|
29
|
+
<XCloseIcon />
|
30
|
+
</Dialog.CloseTrigger>
|
31
|
+
</Dialog.Content>
|
32
|
+
</Dialog.Positioner>
|
33
|
+
</Portal>
|
34
|
+
</Dialog.Root>
|
34
35
|
```
|
35
36
|
|
36
|
-
##
|
37
|
+
## Documentation
|
37
38
|
|
38
|
-
-
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
-
|
46
|
-
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
-
|
51
|
-
-
|
52
|
-
-
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
56
|
-
-
|
57
|
-
-
|
58
|
-
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
- 🟢 [ToggleGroup](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/toggle-group.md)
|
77
|
-
- 🟢 [Tooltip](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tooltip.md)
|
78
|
-
- ⚪ [Tour](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tour.md)
|
79
|
-
- 🟢 [TreeView](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tree-view.md)
|
39
|
+
- [Accordion](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/accordion.md)
|
40
|
+
- [Avatar](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/avatar.md)
|
41
|
+
- [Carousel](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/carousel.md)
|
42
|
+
- [Checkbox](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/checkbox.md)
|
43
|
+
- [Clipboard](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/clipboard.md)
|
44
|
+
- [Collapsible](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/collapsible.md)
|
45
|
+
- [Combobox](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/combobox.md)
|
46
|
+
- [DatePicker](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/date-picker.md)
|
47
|
+
- [Dialog](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/dialog.md)
|
48
|
+
- [Editable](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/editable.md)
|
49
|
+
- [Field](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/field.md)
|
50
|
+
- [FileUpload](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/file-upload.md)
|
51
|
+
- [HoverCard](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/hover-card.md)
|
52
|
+
- [Menu](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/menu.md)
|
53
|
+
- [NumberInput](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/number-input.md)
|
54
|
+
- [Pagination](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/pagination.md)
|
55
|
+
- [PinInput](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/pin-input.md)
|
56
|
+
- [Popover](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/popover.md)
|
57
|
+
- [Portal](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/portal.md)
|
58
|
+
- [Progress](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/progress.md)
|
59
|
+
- [QrCode](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/qr-code.md)
|
60
|
+
- [RadioGroup](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/radio-group.md)
|
61
|
+
- [RatingGroup](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/rating-group.md)
|
62
|
+
- [Select](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/select.md)
|
63
|
+
- [SegmentGroup](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/segment-group.md)
|
64
|
+
- [SignaturePad](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/signature-pad.md)
|
65
|
+
- [Slider](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/slider.md)
|
66
|
+
- [Splitter](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/splitter.md)
|
67
|
+
- [Steps](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/steps.md)
|
68
|
+
- [Switch](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/switch.md)
|
69
|
+
- [Tabs](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tabs.md)
|
70
|
+
- [TagsInput](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tags-input.md)
|
71
|
+
- [TimePicker](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/time-picker.md)
|
72
|
+
- [Timer](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/timer.md)
|
73
|
+
- [Toast](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/toast.md)
|
74
|
+
- [ToggleGroup](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/toggle-group.md)
|
75
|
+
- [Tooltip](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tooltip.md)
|
76
|
+
- [TreeView](https://github.com/calvo-jp/ui-ingredients/blob/main/docs/tree-view.md)
|
80
77
|
|
81
78
|
View components demo [here](https://ui-ingredients.vercel.app/)
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { Context } from '../context.svelte.js';
|
2
|
-
import type {
|
3
|
-
export declare const qrCodeContext: Context<
|
2
|
+
import type { CreateQrCodeReturn } from './create-qr-code.svelte.js';
|
3
|
+
export declare const qrCodeContext: Context<CreateQrCodeReturn>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import * as qrCode from '@zag-js/qr-code';
|
2
|
-
export interface
|
2
|
+
export interface CreateQrCodeProps extends Omit<qrCode.Context, 'id' | 'dir' | 'getRootNode'> {
|
3
3
|
id?: string | null;
|
4
4
|
}
|
5
|
-
export interface
|
5
|
+
export interface CreateQrCodeReturn extends qrCode.Api {
|
6
6
|
}
|
7
|
-
export declare function createQRCode(props:
|
7
|
+
export declare function createQRCode(props: CreateQrCodeProps): CreateQrCodeReturn;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" module>
|
2
2
|
import type {AsChild, HTMLProps} from '../types.js';
|
3
3
|
|
4
|
-
export interface
|
4
|
+
export interface QrCodeFrameProps extends HTMLProps<'svg'> {
|
5
5
|
asChild?: AsChild;
|
6
6
|
}
|
7
7
|
</script>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
import {mergeProps} from '../merge-props.js';
|
11
11
|
import {qrCodeContext} from './context.svelte.js';
|
12
12
|
|
13
|
-
let {asChild, children, ...props}:
|
13
|
+
let {asChild, children, ...props}: QrCodeFrameProps = $props();
|
14
14
|
|
15
15
|
let qrCode = qrCodeContext.get();
|
16
16
|
|
@@ -11,7 +11,7 @@ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> =
|
|
11
11
|
};
|
12
12
|
z_$$bindings?: Bindings;
|
13
13
|
}
|
14
|
-
declare const Frame: $$__sveltets_2_IsomorphicComponent<
|
14
|
+
declare const Frame: $$__sveltets_2_IsomorphicComponent<QrCodeFrameProps, {
|
15
15
|
[evt: string]: CustomEvent<any>;
|
16
16
|
}, {}, {}, "">;
|
17
17
|
type Frame = InstanceType<typeof Frame>;
|
package/dist/qr-code/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
export * as
|
2
|
-
export type {
|
3
|
-
export type {
|
4
|
-
export type {
|
5
|
-
export type {
|
1
|
+
export * as QrCode from './qr-code.js';
|
2
|
+
export type { QrCodeFrameProps } from './frame.svelte';
|
3
|
+
export type { QrCodeOverlayProps } from './overlay.svelte';
|
4
|
+
export type { QrCodePatternProps } from './pattern.svelte';
|
5
|
+
export type { QrCodeProps } from './root.svelte';
|
6
6
|
export { anatomy as qrCodeAnatomy } from '@zag-js/qr-code';
|
package/dist/qr-code/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * as
|
1
|
+
export * as QrCode from './qr-code.js';
|
2
2
|
export { anatomy as qrCodeAnatomy } from '@zag-js/qr-code';
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" module>
|
2
2
|
import type {AsChild, HTMLProps} from '../types.js';
|
3
3
|
|
4
|
-
export interface
|
4
|
+
export interface QrCodeOverlayProps extends HTMLProps<'div'> {
|
5
5
|
asChild?: AsChild;
|
6
6
|
}
|
7
7
|
</script>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
import {mergeProps} from '../merge-props.js';
|
11
11
|
import {qrCodeContext} from './context.svelte.js';
|
12
12
|
|
13
|
-
let {asChild, children, ...props}:
|
13
|
+
let {asChild, children, ...props}: QrCodeOverlayProps = $props();
|
14
14
|
|
15
15
|
let qrCode = qrCodeContext.get();
|
16
16
|
|
@@ -11,7 +11,7 @@ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> =
|
|
11
11
|
};
|
12
12
|
z_$$bindings?: Bindings;
|
13
13
|
}
|
14
|
-
declare const Overlay: $$__sveltets_2_IsomorphicComponent<
|
14
|
+
declare const Overlay: $$__sveltets_2_IsomorphicComponent<QrCodeOverlayProps, {
|
15
15
|
[evt: string]: CustomEvent<any>;
|
16
16
|
}, {}, {}, "">;
|
17
17
|
type Overlay = InstanceType<typeof Overlay>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" module>
|
2
2
|
import type {AsChild, HTMLProps} from '../types.js';
|
3
3
|
|
4
|
-
export interface
|
4
|
+
export interface QrCodePatternProps extends HTMLProps<'path'> {
|
5
5
|
asChild?: AsChild;
|
6
6
|
}
|
7
7
|
</script>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
import {mergeProps} from '../merge-props.js';
|
11
11
|
import {qrCodeContext} from './context.svelte.js';
|
12
12
|
|
13
|
-
let {asChild, children, ...props}:
|
13
|
+
let {asChild, children, ...props}: QrCodePatternProps = $props();
|
14
14
|
|
15
15
|
let qrCode = qrCodeContext.get();
|
16
16
|
|
@@ -11,7 +11,7 @@ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> =
|
|
11
11
|
};
|
12
12
|
z_$$bindings?: Bindings;
|
13
13
|
}
|
14
|
-
declare const Pattern: $$__sveltets_2_IsomorphicComponent<
|
14
|
+
declare const Pattern: $$__sveltets_2_IsomorphicComponent<QrCodePatternProps, {
|
15
15
|
[evt: string]: CustomEvent<any>;
|
16
16
|
}, {}, {}, "">;
|
17
17
|
type Pattern = InstanceType<typeof Pattern>;
|
package/dist/qr-code/root.svelte
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
import type {AsChild, Assign, HTMLProps} from '../types.js';
|
3
3
|
import type {Snippet} from 'svelte';
|
4
4
|
import type {
|
5
|
-
|
6
|
-
|
5
|
+
CreateQrCodeProps,
|
6
|
+
CreateQrCodeReturn,
|
7
7
|
} from './create-qr-code.svelte.js';
|
8
8
|
|
9
|
-
export interface
|
10
|
-
extends Assign<Omit<HTMLProps<'div'>, 'children'>,
|
11
|
-
asChild?: AsChild<
|
12
|
-
children?: Snippet<[
|
9
|
+
export interface QrCodeProps
|
10
|
+
extends Assign<Omit<HTMLProps<'div'>, 'children'>, CreateQrCodeProps> {
|
11
|
+
asChild?: AsChild<CreateQrCodeReturn>;
|
12
|
+
children?: Snippet<[CreateQrCodeReturn]>;
|
13
13
|
}
|
14
14
|
</script>
|
15
15
|
|
@@ -20,10 +20,10 @@
|
|
20
20
|
import {qrCodeContext} from './context.svelte.js';
|
21
21
|
import {createQRCode} from './create-qr-code.svelte.js';
|
22
22
|
|
23
|
-
let {asChild, children, ...props}:
|
23
|
+
let {asChild, children, ...props}: QrCodeProps = $props();
|
24
24
|
|
25
25
|
let [qrCodeProps, otherProps] = $derived(
|
26
|
-
createSplitProps<
|
26
|
+
createSplitProps<CreateQrCodeProps>(['id', 'ids', 'value', 'encoding'])(
|
27
27
|
props,
|
28
28
|
),
|
29
29
|
);
|
@@ -11,7 +11,7 @@ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> =
|
|
11
11
|
};
|
12
12
|
z_$$bindings?: Bindings;
|
13
13
|
}
|
14
|
-
declare const Root: $$__sveltets_2_IsomorphicComponent<
|
14
|
+
declare const Root: $$__sveltets_2_IsomorphicComponent<QrCodeProps, {
|
15
15
|
[evt: string]: CustomEvent<any>;
|
16
16
|
}, {}, {}, "">;
|
17
17
|
type Root = InstanceType<typeof Root>;
|