uisv 0.0.2 → 0.0.4

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.
@@ -1,70 +0,0 @@
1
- <script module lang="ts">
2
- import type { Snippet } from 'svelte';
3
- import type { ClassNameValue } from 'tailwind-merge';
4
- import { tv } from 'tailwind-variants';
5
-
6
- export type CardProps = {
7
- children: Snippet;
8
- header?: Snippet;
9
- footer?: Snippet;
10
- variant?: 'solid' | 'outline' | 'soft' | 'subtle';
11
- ui?: {
12
- base?: ClassNameValue;
13
- header?: ClassNameValue;
14
- content?: ClassNameValue;
15
- footer?: ClassNameValue;
16
- };
17
- };
18
- </script>
19
-
20
- <script lang="ts">
21
- let { header, children, footer, variant = 'solid', ui = {} }: CardProps = $props();
22
-
23
- const classes = $derived.by(() =>
24
- tv({
25
- slots: {
26
- base: 'rounded overflow-hidden',
27
- header: 'p-4 sm:px-6',
28
- content: 'p-4 sm:p-6',
29
- footer: 'p-4 sm:px-6'
30
- },
31
- variants: {
32
- variant: {
33
- solid: {
34
- base: 'bg-secondary-900 text-secondary-50',
35
- header: 'border-transparent',
36
- footer: 'border-transparent'
37
- },
38
- outline: {
39
- base: 'border border-secondary-300 divide-y divide-secondary-300'
40
- },
41
- soft: {
42
- base: 'bg-secondary-50 divide-y divide-secondary-300'
43
- },
44
- subtle: {
45
- base: 'bg-secondary-50 border-secondary-300 border divide-y divide-secondary-300'
46
- }
47
- }
48
- },
49
- compoundVariants: []
50
- })({ variant })
51
- );
52
- </script>
53
-
54
- <div class={classes.base({ class: [ui.base] })}>
55
- {#if header}
56
- <div class={classes.header({ class: [ui.header] })}>
57
- {@render header()}
58
- </div>
59
- {/if}
60
-
61
- <div class={classes.content({ class: ui.content })}>
62
- {@render children()}
63
- </div>
64
-
65
- {#if footer}
66
- <div class={classes.header({ class: [ui.header] })}>
67
- {@render footer()}
68
- </div>
69
- {/if}
70
- </div>
@@ -1,17 +0,0 @@
1
- import type { Snippet } from 'svelte';
2
- import type { ClassNameValue } from 'tailwind-merge';
3
- export type CardProps = {
4
- children: Snippet;
5
- header?: Snippet;
6
- footer?: Snippet;
7
- variant?: 'solid' | 'outline' | 'soft' | 'subtle';
8
- ui?: {
9
- base?: ClassNameValue;
10
- header?: ClassNameValue;
11
- content?: ClassNameValue;
12
- footer?: ClassNameValue;
13
- };
14
- };
15
- declare const Card: import("svelte").Component<CardProps, {}, "">;
16
- type Card = ReturnType<typeof Card>;
17
- export default Card;
@@ -1,82 +0,0 @@
1
- <script module lang="ts">
2
- import type { PropColor } from '../types.js';
3
- import type { Snippet } from 'svelte';
4
- import type { ClassNameValue } from 'tailwind-merge';
5
- import { tv } from 'tailwind-variants';
6
-
7
- export type ChipProps = {
8
- children: Snippet;
9
- text?: string;
10
- color?: PropColor;
11
- position?: 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
12
- size?: number;
13
- ui?: {
14
- base?: ClassNameValue;
15
- chip?: ClassNameValue;
16
- };
17
- };
18
- </script>
19
-
20
- <script lang="ts">
21
- let {
22
- children,
23
- text,
24
- color = 'primary',
25
- position = 'top-right',
26
- size = 8,
27
- ui = {}
28
- }: ChipProps = $props();
29
-
30
- const classes = $derived.by(() =>
31
- tv({
32
- slots: {
33
- base: 'relative inline-flex items-center justify-center shrink-0',
34
- chip: [
35
- 'absolute rounded-full ring ring-white flex items-center justify-center text-white font-medium whitespace-nowrap',
36
- '-translate-y-1/2 translate-x-1/2 px-0.5'
37
- ]
38
- },
39
- variants: {
40
- color: {
41
- primary: {
42
- chip: 'bg-primary'
43
- },
44
- secondary: {
45
- chip: 'bg-secondary'
46
- },
47
- success: {
48
- chip: 'bg-success'
49
- },
50
- info: {
51
- chip: 'bg-info'
52
- },
53
- warning: {
54
- chip: 'bg-warning'
55
- },
56
- error: {
57
- chip: 'bg-error'
58
- }
59
- },
60
- position: {
61
- 'top-right': { chip: 'top-0 right-0' },
62
- 'bottom-right': { chip: 'bottom-0 right-0' },
63
- 'top-left': { chip: 'top-0 left-0' },
64
- 'bottom-left': { chip: 'bottom-0 left-0' }
65
- }
66
- }
67
- })({ color, position })
68
- );
69
- </script>
70
-
71
- <div class={classes.base({ class: [ui.base] })}>
72
- {@render children()}
73
-
74
- <span
75
- class={classes.chip({ class: ui.chip })}
76
- style:height="{size}px"
77
- style:min-width="{size}px"
78
- style:font-size="{size}px"
79
- >
80
- {text}
81
- </span>
82
- </div>
@@ -1,17 +0,0 @@
1
- import type { PropColor } from '../types.js';
2
- import type { Snippet } from 'svelte';
3
- import type { ClassNameValue } from 'tailwind-merge';
4
- export type ChipProps = {
5
- children: Snippet;
6
- text?: string;
7
- color?: PropColor;
8
- position?: 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
9
- size?: number;
10
- ui?: {
11
- base?: ClassNameValue;
12
- chip?: ClassNameValue;
13
- };
14
- };
15
- declare const Chip: import("svelte").Component<ChipProps, {}, "">;
16
- type Chip = ReturnType<typeof Chip>;
17
- export default Chip;
@@ -1,16 +0,0 @@
1
- export * from './button.svelte';
2
- export { default as Button } from './button.svelte';
3
- export * from './badge.svelte';
4
- export { default as Badge } from './badge.svelte';
5
- export * from './alert.svelte';
6
- export { default as Alert } from './alert.svelte';
7
- export * from './banner.svelte';
8
- export { default as Banner } from './banner.svelte';
9
- export * from './progress.svelte';
10
- export { default as Progress } from './progress.svelte';
11
- export * from './card.svelte';
12
- export { default as Card } from './card.svelte';
13
- export * from './chip.svelte';
14
- export { default as Chip } from './chip.svelte';
15
- export * from './switch.svelte';
16
- export { default as Switch } from './switch.svelte';
@@ -1,16 +0,0 @@
1
- export * from './button.svelte';
2
- export { default as Button } from './button.svelte';
3
- export * from './badge.svelte';
4
- export { default as Badge } from './badge.svelte';
5
- export * from './alert.svelte';
6
- export { default as Alert } from './alert.svelte';
7
- export * from './banner.svelte';
8
- export { default as Banner } from './banner.svelte';
9
- export * from './progress.svelte';
10
- export { default as Progress } from './progress.svelte';
11
- export * from './card.svelte';
12
- export { default as Card } from './card.svelte';
13
- export * from './chip.svelte';
14
- export { default as Chip } from './chip.svelte';
15
- export * from './switch.svelte';
16
- export { default as Switch } from './switch.svelte';
@@ -1,32 +0,0 @@
1
- <script lang="ts">
2
- import type { ClassNameValue } from 'tailwind-merge';
3
-
4
- let { class: klass }: { class?: ClassNameValue } = $props();
5
- </script>
6
-
7
- <svg
8
- class={[
9
- 'inset-0 w-full stroke-secondary/10 border border-dashed border-secondary rounded-md',
10
- klass
11
- ]}
12
- fill="none"
13
- >
14
- <defs>
15
- <pattern
16
- id="pattern-5c1e4f0e-62d5-498b-8ff0-cf77bb448c8e"
17
- x="0"
18
- y="0"
19
- width="10"
20
- height="10"
21
- patternUnits="userSpaceOnUse"
22
- >
23
- <path d="M-3 13 15-5M-5 5l18-18M-1 21 17 3"> </path>
24
- </pattern>
25
- </defs>
26
- <rect
27
- stroke="none"
28
- fill="url(#pattern-5c1e4f0e-62d5-498b-8ff0-cf77bb448c8e)"
29
- width="100%"
30
- height="100%"
31
- ></rect>
32
- </svg>
@@ -1,7 +0,0 @@
1
- import type { ClassNameValue } from 'tailwind-merge';
2
- type $$ComponentProps = {
3
- class?: ClassNameValue;
4
- };
5
- declare const Placeholder: import("svelte").Component<$$ComponentProps, {}, "">;
6
- type Placeholder = ReturnType<typeof Placeholder>;
7
- export default Placeholder;
@@ -1,124 +0,0 @@
1
- <script module lang="ts">
2
- import type { PropColor } from '../types.js';
3
- import type { ClassNameValue } from 'tailwind-merge';
4
- import { tv } from 'tailwind-variants';
5
-
6
- export type ProgressProps = {
7
- value?: number;
8
- max?: number | string[];
9
- animation?: 'swing' | 'carousel' | 'carousel-inverse' | 'elastic';
10
- orientation?: 'horizontal' | 'veritcal';
11
- color?: PropColor;
12
- height?: number;
13
- inverted?: boolean;
14
- status?: boolean;
15
- ui?: {
16
- base?: ClassNameValue;
17
- header?: ClassNameValue;
18
- content?: ClassNameValue;
19
- footer?: ClassNameValue;
20
- };
21
- };
22
- </script>
23
-
24
- <script lang="ts">
25
- let {
26
- max,
27
- animation,
28
- inverted,
29
- status,
30
- value,
31
- orientation = 'horizontal',
32
- color = 'primary',
33
- height = '',
34
- ui = {}
35
- }: ProgressProps = $props();
36
-
37
- const percentage = $derived.by(() => {
38
- if (value === undefined) return null;
39
- if (Array.isArray(max)) return (value / (max.length - 1)) * 100;
40
-
41
- return (value / (max || 100)) * 100;
42
- });
43
- const indeterminate = $derived.by(() => {
44
- if (value === undefined || percentage === null) return true;
45
- if (value < 0) return true;
46
- if (percentage > 100) return true;
47
-
48
- return false;
49
- });
50
- const classes = $derived.by(() =>
51
- tv({
52
- slots: {
53
- root: 'relative w-full rounded-full overflow-hidden bg-secondary-300',
54
- status: '',
55
- indicator: 'absolute transition-all rounded-full',
56
- steps: ''
57
- },
58
- variants: {
59
- color: {
60
- primary: {
61
- indicator: 'bg-primary-500'
62
- },
63
- secondary: {
64
- indicator: 'bg-secondary-500'
65
- },
66
- info: {
67
- indicator: 'bg-info-500'
68
- },
69
- success: {
70
- indicator: 'bg-success-500'
71
- },
72
- warning: {
73
- indicator: 'bg-warning-500'
74
- },
75
- error: {
76
- indicator: 'bg-error-500'
77
- }
78
- },
79
- animation: {
80
- swing: [indeterminate ? 'animate-[swing_2s_ease-in-out_infinite' : ''],
81
- carousel: [indeterminate ? '' : ''],
82
- 'carousel-inverse': [indeterminate ? '' : ''],
83
- elastic: [indeterminate ? '' : '']
84
- }
85
- },
86
- compoundVariants: []
87
- })({
88
- color,
89
- animation: animation ?? 'swing'
90
- })
91
- );
92
- </script>
93
-
94
- <div data-state-indeterminate={indeterminate}>
95
- <div class={classes.root({ class: [ui.base] })} style:height={`${height || 8}px`}>
96
- <span class={classes.indicator({ class: ['h-full left-0'] })} style:width={`${percentage}%`}>
97
- </span>
98
- </div>
99
-
100
- {#if Array.isArray(max)}
101
- <p
102
- class={[
103
- 'text-right transition',
104
- value && value > 0 && max[value] ? 'text-primary-500' : 'text-secondary-500'
105
- ]}
106
- >
107
- {(value && max[value]) || max[0]}
108
- </p>
109
- {/if}
110
- </div>
111
-
112
- <style>
113
- @keyframe swing {
114
- 0% {
115
- width: 0%;
116
- }
117
- 50% {
118
- width: 100%;
119
- }
120
- 100% {
121
- width: 0%;
122
- }
123
- }
124
- </style>
@@ -1,21 +0,0 @@
1
- import type { PropColor } from '../types.js';
2
- import type { ClassNameValue } from 'tailwind-merge';
3
- export type ProgressProps = {
4
- value?: number;
5
- max?: number | string[];
6
- animation?: 'swing' | 'carousel' | 'carousel-inverse' | 'elastic';
7
- orientation?: 'horizontal' | 'veritcal';
8
- color?: PropColor;
9
- height?: number;
10
- inverted?: boolean;
11
- status?: boolean;
12
- ui?: {
13
- base?: ClassNameValue;
14
- header?: ClassNameValue;
15
- content?: ClassNameValue;
16
- footer?: ClassNameValue;
17
- };
18
- };
19
- declare const Progress: import("svelte").Component<ProgressProps, {}, "">;
20
- type Progress = ReturnType<typeof Progress>;
21
- export default Progress;
@@ -1,180 +0,0 @@
1
- <script module lang="ts">
2
- import type { PropColor } from '../types.js';
3
- import { isComponent, isSnippet } from '../utils/common.js';
4
- import type { Snippet } from 'svelte';
5
- import type { ClassNameValue } from 'tailwind-merge';
6
- import { tv } from 'tailwind-variants';
7
- import type { Component } from 'vitest-browser-svelte';
8
-
9
- export type SwitchProps = {
10
- value?: boolean;
11
- color?: PropColor;
12
- size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
13
- disabled?: boolean;
14
- loading?: boolean;
15
- loadingicon?: string | Snippet | Component;
16
- uncheckedicon?: string | Snippet | Component;
17
- checkedicon?: string | Snippet | Component;
18
- label?: string | Snippet;
19
- description?: string | Snippet;
20
- required?: boolean;
21
- ui?: {
22
- root?: ClassNameValue;
23
- container?: ClassNameValue;
24
- thumb?: ClassNameValue;
25
- label?: ClassNameValue;
26
- description?: ClassNameValue;
27
- };
28
- };
29
- </script>
30
-
31
- <script lang="ts">
32
- let {
33
- value = $bindable(false),
34
- color = 'primary',
35
- size = 'md',
36
- disabled,
37
- loading,
38
- loadingicon = 'i-lucide-loader-circle',
39
- uncheckedicon,
40
- checkedicon,
41
- label,
42
- description,
43
- required,
44
- ui = {}
45
- }: SwitchProps = $props();
46
-
47
- const classes = $derived.by(() =>
48
- tv({
49
- slots: {
50
- root: 'flex-inline gap-2',
51
- container: 'rounded-full bg-neutral-200 p-0.5 relative transition',
52
- thumb: [
53
- 'bg-white block rounded-full absolute top-0.5 transition grid place-items-center',
54
- value ? 'translate-x-full' : 'text-neutral-500'
55
- ],
56
- icon: 'pi',
57
- label: 'text-sm',
58
- description: 'text-sm text-neutral-500'
59
- },
60
- variants: {
61
- color: {
62
- primary: {
63
- container: ['', value && 'bg-primary-500 text-primary-500']
64
- },
65
- secondary: {
66
- container: ['', value && 'bg-neutral-900 text-neutral-900']
67
- },
68
- info: {
69
- container: ['', value && 'bg-info-500 text-info-500']
70
- },
71
- success: {
72
- container: ['', value && 'bg-success-500 text-success-500']
73
- },
74
- warning: {
75
- container: ['', value && 'bg-warning-500 text-warning-500']
76
- },
77
- error: {
78
- container: ['', value && 'bg-error-500 text-error-500']
79
- }
80
- },
81
- size: {
82
- xs: {
83
- container: 'w-7 min-w-7 h-4',
84
- thumb: 'size-3',
85
- icon: 'size-2.5'
86
- },
87
- sm: {
88
- container: 'w-8 min-w-8 h-4.5',
89
- thumb: 'size-3.5',
90
- icon: 'size-3'
91
- },
92
- md: {
93
- container: 'w-9 min-w-9 h-5',
94
- thumb: 'size-4',
95
- icon: 'size-3.5'
96
- },
97
- lg: {
98
- container: 'w-10 min-w-10 h-5.5',
99
- thumb: 'size-4.5',
100
- icon: 'size-4'
101
- },
102
- xl: {
103
- container: 'w-11 min-w-11 h-6',
104
- thumb: 'size-5',
105
- icon: 'size-4.5'
106
- }
107
- }
108
- },
109
- compoundVariants: []
110
- })({ color, size })
111
- );
112
- </script>
113
-
114
- <div
115
- data-state={value ? 'checked' : 'unchecked'}
116
- class={classes.root({
117
- class: [(loading || disabled) && 'opacity-50', ui.thumb]
118
- })}
119
- >
120
- <button
121
- aria-label="switch"
122
- data-state={value ? 'checked' : 'unchecked'}
123
- class={classes.container({ class: [loading && 'cursor-not-allowed', ui.thumb] })}
124
- onclick={() => {
125
- if (loading) return;
126
- value = !value;
127
- }}
128
- >
129
- <span data-state={value ? 'checked' : 'unchecked'} class={classes.thumb({ class: ui.thumb })}>
130
- {@render Icon(uncheckedicon, [(loading || value) && 'opacity-0'])}
131
- {@render Icon(checkedicon, [(loading || !value) && 'opacity-0'])}
132
- {@render Icon(loadingicon || 'i-lucide-loader-circle', [
133
- 'animate-spin',
134
- !loading && 'opacity-0'
135
- ])}
136
- </span>
137
- </button>
138
-
139
- {#if label}
140
- <span>
141
- <div
142
- class={classes.label({
143
- class: [required ? 'after:content-["*"] after:text-error-500' : '', ui.thumb]
144
- })}
145
- >
146
- {#if typeof label === 'string'}
147
- {label}
148
- {:else}
149
- {@render label()}
150
- {/if}
151
- </div>
152
-
153
- {#if description}
154
- <div class={classes.description({ class: ui.thumb })}>
155
- {#if typeof description === 'string'}
156
- {description}
157
- {:else}
158
- {@render description()}
159
- {/if}
160
- </div>
161
- {/if}
162
- </span>
163
- {/if}
164
- </div>
165
-
166
- {#snippet Icon(ico?: SwitchProps['checkedicon'], icon_class?: ClassNameValue)}
167
- <div class={['absolute', icon_class]}>
168
- {#if typeof ico === 'string'}
169
- <div
170
- data-state={value ? 'checked' : 'unchecked'}
171
- class={classes.icon({ class: [ico] })}
172
- ></div>
173
- {:else if isSnippet(ico)}
174
- {@render ico()}
175
- {:else if isComponent(ico)}
176
- {@const Iconn = ico}
177
- <Iconn />
178
- {/if}
179
- </div>
180
- {/snippet}
@@ -1,27 +0,0 @@
1
- import type { PropColor } from '../types.js';
2
- import type { Snippet } from 'svelte';
3
- import type { ClassNameValue } from 'tailwind-merge';
4
- import type { Component } from 'vitest-browser-svelte';
5
- export type SwitchProps = {
6
- value?: boolean;
7
- color?: PropColor;
8
- size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
9
- disabled?: boolean;
10
- loading?: boolean;
11
- loadingicon?: string | Snippet | Component;
12
- uncheckedicon?: string | Snippet | Component;
13
- checkedicon?: string | Snippet | Component;
14
- label?: string | Snippet;
15
- description?: string | Snippet;
16
- required?: boolean;
17
- ui?: {
18
- root?: ClassNameValue;
19
- container?: ClassNameValue;
20
- thumb?: ClassNameValue;
21
- label?: ClassNameValue;
22
- description?: ClassNameValue;
23
- };
24
- };
25
- declare const Switch: import("svelte").Component<SwitchProps, {}, "value">;
26
- type Switch = ReturnType<typeof Switch>;
27
- export default Switch;
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './components/index.js';
2
- export * from './types.js';
package/dist/index.js DELETED
@@ -1,2 +0,0 @@
1
- export * from './components/index.js';
2
- export * from './types.js';
package/dist/types.d.ts DELETED
@@ -1,7 +0,0 @@
1
- declare module '#theme/button' {
2
- import button from './theme/button.ts';
3
-
4
- export default ReturnType<typeof button>;
5
- }
6
-
7
- export {};
package/dist/types.js DELETED
@@ -1 +0,0 @@
1
- export {};
@@ -1,14 +0,0 @@
1
- import type { Snippet, Component } from 'svelte';
2
- export declare const tv: import("tailwind-variants").TV;
3
- /**
4
- * Checks if a value is a Svelte snippet
5
- * @param v - The value to check (should be Snippet | Component)
6
- * @returns true if the value is a snippet, false otherwise
7
- */
8
- export declare const isSnippet: (v: unknown) => v is Snippet;
9
- /**
10
- * Checks if a value is a Svelte component
11
- * @param v - The value to check (should be Snippet | Component)
12
- * @returns true if the value is a component, false otherwise
13
- */
14
- export declare const isComponent: (v: unknown) => v is Component;
@@ -1,18 +0,0 @@
1
- import { createTV } from 'tailwind-variants';
2
- export const tv = createTV({});
3
- /**
4
- * Checks if a value is a Svelte snippet
5
- * @param v - The value to check (should be Snippet | Component)
6
- * @returns true if the value is a snippet, false otherwise
7
- */
8
- export const isSnippet = (v) => {
9
- return typeof v === 'object' && v !== null && '$$render' in v;
10
- };
11
- /**
12
- * Checks if a value is a Svelte component
13
- * @param v - The value to check (should be Snippet | Component)
14
- * @returns true if the value is a component, false otherwise
15
- */
16
- export const isComponent = (v) => {
17
- return typeof v === 'function' || (typeof v === 'object' && v !== null && !('$$render' in v));
18
- };
@@ -1,8 +0,0 @@
1
- export declare const FORM_OPTION_CONTEXT_KEY: unique symbol;
2
- export declare const FORM_BUS_CONTEXT_KEY: unique symbol;
3
- export declare const FORM_STATE_CONTEXT_KEY: unique symbol;
4
- export declare const FORM_FIELD_CONTEXT_KEY: unique symbol;
5
- export declare const FORM_TID_CONTEXT_KEY: unique symbol;
6
- export declare const FORM_INPUTS_CONTEXT_KEY: unique symbol;
7
- export declare const FORM_LOADING_CONTEXT_KEY: unique symbol;
8
- export declare const FORM_ERRORS_CONTEXT_KEY: unique symbol;