@tialro2/rnbokit 1.0.14 → 1.0.17
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/README.md +242 -242
- package/dist/RNBO.css +113 -113
- package/dist/RNBO.svelte +230 -230
- package/dist/RNBO.svelte.d.ts +19 -18
- package/dist/RNBOcomponents/AudioDropIn.svelte +125 -125
- package/dist/RNBOcomponents/ExtMidiIn.svelte +85 -85
- package/dist/RNBOcomponents/ExtMidiIn.svelte.d.ts +2 -2
- package/dist/RNBOcomponents/ExtMidiOut.svelte +85 -85
- package/dist/RNBOcomponents/ExtMidiOut.svelte.d.ts +2 -2
- package/dist/RNBOcomponents/MicIn.svelte +80 -80
- package/dist/RNBOcomponents/RNBOInlet.svelte +66 -66
- package/dist/RNBOcomponents/RNBOInlet.svelte.d.ts +6 -6
- package/dist/RNBOcomponents/RNBOInport.svelte +21 -21
- package/dist/RNBOcomponents/RNBOMidiIn.svelte +63 -63
- package/dist/RNBOcomponents/RNBOMidiIn.svelte.d.ts +6 -6
- package/dist/RNBOcomponents/RNBOMidiOut.svelte +22 -22
- package/dist/RNBOcomponents/RNBOMidiOut.svelte.d.ts +4 -4
- package/dist/RNBOcomponents/RNBOOutport.svelte +36 -36
- package/dist/RNBOcomponents/RNBOOutport.svelte.d.ts +4 -4
- package/dist/RNBOcomponents/RNBOParam.svelte +37 -37
- package/dist/RNBOcomponents/XYMidiIn.svelte +93 -93
- package/dist/RNBOcomponents/XYMidiIn.svelte.d.ts +2 -2
- package/dist/UIcomponents/Controls.svelte +12 -12
- package/dist/UIcomponents/FileDropZone.svelte +118 -118
- package/dist/UIcomponents/ProgressBar.svelte +35 -35
- package/dist/UIcomponents/ProgressBar.svelte.d.ts +6 -6
- package/dist/UIcomponents/RadioGroup.svelte +27 -27
- package/dist/UIcomponents/RadioGroup.svelte.d.ts +4 -4
- package/dist/UIcomponents/RadioItem.svelte +96 -96
- package/dist/UIcomponents/RadioItem.svelte.d.ts +6 -6
- package/dist/UIcomponents/RangeSlider.svelte.d.ts +10 -10
- package/dist/index.js +20 -20
- package/package.json +7 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script>
|
|
2
2
|
/**
|
|
3
3
|
* @typedef {Object} Props
|
|
4
4
|
* @property {any} [value]
|
|
@@ -14,37 +14,37 @@
|
|
|
14
14
|
max = 100,
|
|
15
15
|
labelledby = ''
|
|
16
16
|
} = $props();
|
|
17
|
-
let fillPercent = $derived(value ? (100 * (value - min)) / (max - min) : 0);
|
|
18
|
-
</script>
|
|
19
|
-
|
|
20
|
-
<!-- Track -->
|
|
21
|
-
<div
|
|
22
|
-
class="RNBOprogress-bar"
|
|
23
|
-
data-testid="progress-bar"
|
|
24
|
-
role="progressbar"
|
|
25
|
-
aria-labelledby={labelledby}
|
|
26
|
-
aria-valuenow={value}
|
|
27
|
-
aria-valuemin={min}
|
|
28
|
-
aria-valuemax={max - min}
|
|
29
|
-
>
|
|
30
|
-
<!-- Meter -->
|
|
31
|
-
<div class="RNBOprogress-bar-meter" style:width="{fillPercent}%"></div>
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
<style>
|
|
35
|
-
.RNBOprogress-bar {
|
|
36
|
-
overflow: hidden;
|
|
37
|
-
width: 100%;
|
|
38
|
-
height: 6px;
|
|
39
|
-
border-radius: var(--local-rounded-base);
|
|
40
|
-
border-style: solid;
|
|
41
|
-
border-color: rgba(var(--local-surface-color), 0.5);
|
|
42
|
-
border-width: 0.5px;
|
|
43
|
-
background-color: white;
|
|
44
|
-
}
|
|
45
|
-
.RNBOprogress-bar-meter {
|
|
46
|
-
height: 100%;
|
|
47
|
-
border-radius: var(--local-rounded-base);
|
|
48
|
-
background-color: rgb(var(--local-accent-color));
|
|
49
|
-
}
|
|
50
|
-
</style>
|
|
17
|
+
let fillPercent = $derived(value ? (100 * (value - min)) / (max - min) : 0);
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<!-- Track -->
|
|
21
|
+
<div
|
|
22
|
+
class="RNBOprogress-bar"
|
|
23
|
+
data-testid="progress-bar"
|
|
24
|
+
role="progressbar"
|
|
25
|
+
aria-labelledby={labelledby}
|
|
26
|
+
aria-valuenow={value}
|
|
27
|
+
aria-valuemin={min}
|
|
28
|
+
aria-valuemax={max - min}
|
|
29
|
+
>
|
|
30
|
+
<!-- Meter -->
|
|
31
|
+
<div class="RNBOprogress-bar-meter" style:width="{fillPercent}%"></div>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
<style>
|
|
35
|
+
.RNBOprogress-bar {
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
width: 100%;
|
|
38
|
+
height: 6px;
|
|
39
|
+
border-radius: var(--local-rounded-base);
|
|
40
|
+
border-style: solid;
|
|
41
|
+
border-color: rgba(var(--local-surface-color), 0.5);
|
|
42
|
+
border-width: 0.5px;
|
|
43
|
+
background-color: white;
|
|
44
|
+
}
|
|
45
|
+
.RNBOprogress-bar-meter {
|
|
46
|
+
height: 100%;
|
|
47
|
+
border-radius: var(--local-rounded-base);
|
|
48
|
+
background-color: rgb(var(--local-accent-color));
|
|
49
|
+
}
|
|
50
|
+
</style>
|
|
@@ -5,13 +5,13 @@ type ProgressBar = {
|
|
|
5
5
|
};
|
|
6
6
|
declare const ProgressBar: import("svelte").Component<{
|
|
7
7
|
value?: any;
|
|
8
|
-
min?: number;
|
|
9
|
-
max?: number;
|
|
10
|
-
labelledby?: string;
|
|
8
|
+
min?: number | undefined;
|
|
9
|
+
max?: number | undefined;
|
|
10
|
+
labelledby?: string | undefined;
|
|
11
11
|
}, {}, "">;
|
|
12
12
|
type Props = {
|
|
13
13
|
value?: any;
|
|
14
|
-
min?: number;
|
|
15
|
-
max?: number;
|
|
16
|
-
labelledby?: string;
|
|
14
|
+
min?: number | undefined;
|
|
15
|
+
max?: number | undefined;
|
|
16
|
+
labelledby?: string | undefined;
|
|
17
17
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script>
|
|
2
2
|
/**
|
|
3
3
|
* @typedef {Object} Props
|
|
4
4
|
* @property {string} [labelledby]
|
|
@@ -7,29 +7,29 @@
|
|
|
7
7
|
|
|
8
8
|
/** @type {Props} */
|
|
9
9
|
let { labelledby = '', children } = $props();
|
|
10
|
-
</script>
|
|
11
|
-
|
|
12
|
-
<div
|
|
13
|
-
class="RNBOradio-group"
|
|
14
|
-
data-testid="radio-group"
|
|
15
|
-
role="radiogroup"
|
|
16
|
-
aria-labelledby={labelledby}
|
|
17
|
-
>
|
|
18
|
-
{@render children?.()}
|
|
19
|
-
</div>
|
|
20
|
-
|
|
21
|
-
<style>
|
|
22
|
-
.RNBOradio-group {
|
|
23
|
-
display: inline-flex;
|
|
24
|
-
flex-wrap: wrap;
|
|
25
|
-
margin-left: 0.25rem;
|
|
26
|
-
background-color: rgba(var(--local-surface-color), 0);
|
|
27
|
-
border-width: var(--local-border-base);
|
|
28
|
-
border-color: rgb(var(--local-surface-color));
|
|
29
|
-
border-style: solid;
|
|
30
|
-
border-radius: var(--local-rounded-base);
|
|
31
|
-
}
|
|
32
|
-
/* .RNBOradio-group:hover { */
|
|
33
|
-
/* background-color: rgba(var(--local-surface-color), 0.2); */
|
|
34
|
-
/* } */
|
|
35
|
-
</style>
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<div
|
|
13
|
+
class="RNBOradio-group"
|
|
14
|
+
data-testid="radio-group"
|
|
15
|
+
role="radiogroup"
|
|
16
|
+
aria-labelledby={labelledby}
|
|
17
|
+
>
|
|
18
|
+
{@render children?.()}
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<style>
|
|
22
|
+
.RNBOradio-group {
|
|
23
|
+
display: inline-flex;
|
|
24
|
+
flex-wrap: wrap;
|
|
25
|
+
margin-left: 0.25rem;
|
|
26
|
+
background-color: rgba(var(--local-surface-color), 0);
|
|
27
|
+
border-width: var(--local-border-base);
|
|
28
|
+
border-color: rgb(var(--local-surface-color));
|
|
29
|
+
border-style: solid;
|
|
30
|
+
border-radius: var(--local-rounded-base);
|
|
31
|
+
}
|
|
32
|
+
/* .RNBOradio-group:hover { */
|
|
33
|
+
/* background-color: rgba(var(--local-surface-color), 0.2); */
|
|
34
|
+
/* } */
|
|
35
|
+
</style>
|
|
@@ -4,10 +4,10 @@ type RadioGroup = {
|
|
|
4
4
|
$set?(props: Partial<Props>): void;
|
|
5
5
|
};
|
|
6
6
|
declare const RadioGroup: import("svelte").Component<{
|
|
7
|
-
labelledby?: string;
|
|
8
|
-
children?: import("svelte").Snippet;
|
|
7
|
+
labelledby?: string | undefined;
|
|
8
|
+
children?: import("svelte").Snippet<[]> | undefined;
|
|
9
9
|
}, {}, "">;
|
|
10
10
|
type Props = {
|
|
11
|
-
labelledby?: string;
|
|
12
|
-
children?: import("svelte").Snippet;
|
|
11
|
+
labelledby?: string | undefined;
|
|
12
|
+
children?: import("svelte").Snippet<[]> | undefined;
|
|
13
13
|
};
|
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
/**
|
|
3
|
-
* @typedef {Object} Props
|
|
4
|
-
* @property {any} group
|
|
5
|
-
* @property {any} name
|
|
6
|
-
* @property {any} value
|
|
7
|
-
* @property {string} [title]
|
|
8
|
-
* @property {string} [label]
|
|
9
|
-
* @property {import('svelte').Snippet} [children]
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
/** @type {Props} */
|
|
13
|
-
let {
|
|
14
|
-
group = $bindable(),
|
|
15
|
-
name,
|
|
16
|
-
value,
|
|
17
|
-
title = '',
|
|
18
|
-
label = '',
|
|
19
|
-
onkeydown,
|
|
20
|
-
onkeyup,
|
|
21
|
-
onkeypress,
|
|
22
|
-
onclick,
|
|
23
|
-
onchange,
|
|
24
|
-
children
|
|
25
|
-
} = $props();
|
|
26
|
-
let elemInput = $state();
|
|
27
|
-
function onKeyDown(event) {
|
|
28
|
-
if (['Enter', 'Space'].includes(event.code)) {
|
|
29
|
-
event.preventDefault();
|
|
30
|
-
elemInput.click();
|
|
31
|
-
}
|
|
32
|
-
onkeydown();
|
|
33
|
-
}
|
|
34
|
-
let checked = $derived(value === group);
|
|
35
|
-
</script>
|
|
36
|
-
|
|
37
|
-
<label>
|
|
38
|
-
<!-- A11y attributes are not allowed on <label> -->
|
|
39
|
-
<div
|
|
40
|
-
class="RNBOradio-item {checked ? 'RNBOchecked' : 'RNBOhover'}"
|
|
41
|
-
data-testid="radio-item"
|
|
42
|
-
role="radio"
|
|
43
|
-
aria-checked={checked}
|
|
44
|
-
aria-label={label}
|
|
45
|
-
tabindex="0"
|
|
46
|
-
{title}
|
|
47
|
-
onkeydown={onKeyDown}
|
|
48
|
-
{onkeyup}
|
|
49
|
-
{onkeypress}
|
|
50
|
-
>
|
|
51
|
-
<!-- NOTE: Don't use `hidden` as it prevents `required` from operating -->
|
|
52
|
-
<div class="RNBOradio-input">
|
|
53
|
-
<input
|
|
54
|
-
bind:this={elemInput}
|
|
55
|
-
type="radio"
|
|
56
|
-
bind:group
|
|
57
|
-
{name}
|
|
58
|
-
{value}
|
|
59
|
-
tabindex="-1"
|
|
60
|
-
{onclick}
|
|
61
|
-
{onchange}
|
|
62
|
-
id="test"
|
|
63
|
-
/>
|
|
64
|
-
</div>
|
|
65
|
-
{@render children?.()}
|
|
66
|
-
</div>
|
|
67
|
-
</label>
|
|
68
|
-
|
|
69
|
-
<style>
|
|
70
|
-
.RNBOradio-item {
|
|
71
|
-
font-size: 1rem;
|
|
72
|
-
line-height: 1.5rem;
|
|
73
|
-
text-align: center;
|
|
74
|
-
flex: 1 1 auto;
|
|
75
|
-
cursor: pointer;
|
|
76
|
-
padding: 0.2rem;
|
|
77
|
-
padding-left: 0.75rem;
|
|
78
|
-
padding-right: 0.75rem;
|
|
79
|
-
margin: 0.25rem;
|
|
80
|
-
background-color: rgba(var(--local-accent-color), 0);
|
|
81
|
-
border-radius: var(--local-rounded-base);
|
|
82
|
-
}
|
|
83
|
-
.RNBOhover:hover {
|
|
84
|
-
background-color: rgba(var(--local-accent-color), 0.2);
|
|
85
|
-
transition: var(--local-animation) var(--local-animation-duration);
|
|
86
|
-
}
|
|
87
|
-
.RNBOchecked {
|
|
88
|
-
background-color: rgba(var(--local-accent-color), 1);
|
|
89
|
-
transition: var(--local-animation) var(--local-animation-duration);
|
|
90
|
-
}
|
|
91
|
-
.RNBOradio-input {
|
|
92
|
-
overflow: hidden;
|
|
93
|
-
width: 0;
|
|
94
|
-
height: 0;
|
|
95
|
-
}
|
|
96
|
-
</style>
|
|
1
|
+
<script>
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {Object} Props
|
|
4
|
+
* @property {any} group
|
|
5
|
+
* @property {any} name
|
|
6
|
+
* @property {any} value
|
|
7
|
+
* @property {string} [title]
|
|
8
|
+
* @property {string} [label]
|
|
9
|
+
* @property {import('svelte').Snippet} [children]
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/** @type {Props} */
|
|
13
|
+
let {
|
|
14
|
+
group = $bindable(),
|
|
15
|
+
name,
|
|
16
|
+
value,
|
|
17
|
+
title = '',
|
|
18
|
+
label = '',
|
|
19
|
+
onkeydown,
|
|
20
|
+
onkeyup,
|
|
21
|
+
onkeypress,
|
|
22
|
+
onclick,
|
|
23
|
+
onchange,
|
|
24
|
+
children
|
|
25
|
+
} = $props();
|
|
26
|
+
let elemInput = $state();
|
|
27
|
+
function onKeyDown(event) {
|
|
28
|
+
if (['Enter', 'Space'].includes(event.code)) {
|
|
29
|
+
event.preventDefault();
|
|
30
|
+
elemInput.click();
|
|
31
|
+
}
|
|
32
|
+
onkeydown();
|
|
33
|
+
}
|
|
34
|
+
let checked = $derived(value === group);
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
<label>
|
|
38
|
+
<!-- A11y attributes are not allowed on <label> -->
|
|
39
|
+
<div
|
|
40
|
+
class="RNBOradio-item {checked ? 'RNBOchecked' : 'RNBOhover'}"
|
|
41
|
+
data-testid="radio-item"
|
|
42
|
+
role="radio"
|
|
43
|
+
aria-checked={checked}
|
|
44
|
+
aria-label={label}
|
|
45
|
+
tabindex="0"
|
|
46
|
+
{title}
|
|
47
|
+
onkeydown={onKeyDown}
|
|
48
|
+
{onkeyup}
|
|
49
|
+
{onkeypress}
|
|
50
|
+
>
|
|
51
|
+
<!-- NOTE: Don't use `hidden` as it prevents `required` from operating -->
|
|
52
|
+
<div class="RNBOradio-input">
|
|
53
|
+
<input
|
|
54
|
+
bind:this={elemInput}
|
|
55
|
+
type="radio"
|
|
56
|
+
bind:group
|
|
57
|
+
{name}
|
|
58
|
+
{value}
|
|
59
|
+
tabindex="-1"
|
|
60
|
+
{onclick}
|
|
61
|
+
{onchange}
|
|
62
|
+
id="test"
|
|
63
|
+
/>
|
|
64
|
+
</div>
|
|
65
|
+
{@render children?.()}
|
|
66
|
+
</div>
|
|
67
|
+
</label>
|
|
68
|
+
|
|
69
|
+
<style>
|
|
70
|
+
.RNBOradio-item {
|
|
71
|
+
font-size: 1rem;
|
|
72
|
+
line-height: 1.5rem;
|
|
73
|
+
text-align: center;
|
|
74
|
+
flex: 1 1 auto;
|
|
75
|
+
cursor: pointer;
|
|
76
|
+
padding: 0.2rem;
|
|
77
|
+
padding-left: 0.75rem;
|
|
78
|
+
padding-right: 0.75rem;
|
|
79
|
+
margin: 0.25rem;
|
|
80
|
+
background-color: rgba(var(--local-accent-color), 0);
|
|
81
|
+
border-radius: var(--local-rounded-base);
|
|
82
|
+
}
|
|
83
|
+
.RNBOhover:hover {
|
|
84
|
+
background-color: rgba(var(--local-accent-color), 0.2);
|
|
85
|
+
transition: var(--local-animation) var(--local-animation-duration);
|
|
86
|
+
}
|
|
87
|
+
.RNBOchecked {
|
|
88
|
+
background-color: rgba(var(--local-accent-color), 1);
|
|
89
|
+
transition: var(--local-animation) var(--local-animation-duration);
|
|
90
|
+
}
|
|
91
|
+
.RNBOradio-input {
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
width: 0;
|
|
94
|
+
height: 0;
|
|
95
|
+
}
|
|
96
|
+
</style>
|
|
@@ -7,15 +7,15 @@ declare const RadioItem: import("svelte").Component<{
|
|
|
7
7
|
group: any;
|
|
8
8
|
name: any;
|
|
9
9
|
value: any;
|
|
10
|
-
title?: string;
|
|
11
|
-
label?: string;
|
|
12
|
-
children?: import("svelte").Snippet;
|
|
10
|
+
title?: string | undefined;
|
|
11
|
+
label?: string | undefined;
|
|
12
|
+
children?: import("svelte").Snippet<[]> | undefined;
|
|
13
13
|
}, {}, "group">;
|
|
14
14
|
type Props = {
|
|
15
15
|
group: any;
|
|
16
16
|
name: any;
|
|
17
17
|
value: any;
|
|
18
|
-
title?: string;
|
|
19
|
-
label?: string;
|
|
20
|
-
children?: import("svelte").Snippet;
|
|
18
|
+
title?: string | undefined;
|
|
19
|
+
label?: string | undefined;
|
|
20
|
+
children?: import("svelte").Snippet<[]> | undefined;
|
|
21
21
|
};
|
|
@@ -5,17 +5,17 @@ type RangeSlider = {
|
|
|
5
5
|
};
|
|
6
6
|
declare const RangeSlider: import("svelte").Component<{
|
|
7
7
|
name: any;
|
|
8
|
-
value?: number;
|
|
9
|
-
min?: number;
|
|
10
|
-
max?: number;
|
|
11
|
-
step?: number;
|
|
12
|
-
label?: string;
|
|
8
|
+
value?: number | undefined;
|
|
9
|
+
min?: number | undefined;
|
|
10
|
+
max?: number | undefined;
|
|
11
|
+
step?: number | undefined;
|
|
12
|
+
label?: string | undefined;
|
|
13
13
|
}, {}, "value">;
|
|
14
14
|
type Props = {
|
|
15
15
|
name: any;
|
|
16
|
-
value?: number;
|
|
17
|
-
min?: number;
|
|
18
|
-
max?: number;
|
|
19
|
-
step?: number;
|
|
20
|
-
label?: string;
|
|
16
|
+
value?: number | undefined;
|
|
17
|
+
min?: number | undefined;
|
|
18
|
+
max?: number | undefined;
|
|
19
|
+
step?: number | undefined;
|
|
20
|
+
label?: string | undefined;
|
|
21
21
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
// Reexport your entry components here
|
|
2
|
-
export { default as RNBO } from './RNBO.svelte';
|
|
3
|
-
export { default as RNBOParam } from './RNBOcomponents/RNBOParam.svelte';
|
|
4
|
-
export { default as RNBOMidiIn } from './RNBOcomponents/RNBOMidiIn.svelte';
|
|
5
|
-
// export { default as RNBOMidiOut } from './RNBOcomponents/RNBOMidiOut.svelte';
|
|
6
|
-
export { default as RNBOInlet } from './RNBOcomponents/RNBOInlet.svelte';
|
|
7
|
-
export { default as RNBOInport } from './RNBOcomponents/RNBOInport.svelte';
|
|
8
|
-
export { default as RNBOOutport } from './RNBOcomponents/RNBOOutport.svelte';
|
|
9
|
-
|
|
10
|
-
export { default as XYMidiIn } from './RNBOcomponents/XYMidiIn.svelte';
|
|
11
|
-
export { default as ExtMidiIn } from './RNBOcomponents/ExtMidiIn.svelte';
|
|
12
|
-
// export { default as ExtMidiOut } from './RNBOcomponents/ExtMidiOut.svelte';
|
|
13
|
-
export { default as MicIn } from './RNBOcomponents/MicIn.svelte';
|
|
14
|
-
export { default as AudioDropIn } from './RNBOcomponents/AudioDropIn.svelte';
|
|
15
|
-
|
|
16
|
-
export { default as FileDropZone } from './UIcomponents/FileDropZone.svelte';
|
|
17
|
-
export { default as ProgressBar } from './UIcomponents/ProgressBar.svelte';
|
|
18
|
-
export { default as RadioGroup } from './UIcomponents/RadioGroup.svelte';
|
|
19
|
-
export { default as RadioItem } from './UIcomponents/RadioItem.svelte';
|
|
20
|
-
export { default as RangeSlider } from './UIcomponents/RangeSlider.svelte';
|
|
1
|
+
// Reexport your entry components here
|
|
2
|
+
export { default as RNBO } from './RNBO.svelte';
|
|
3
|
+
export { default as RNBOParam } from './RNBOcomponents/RNBOParam.svelte';
|
|
4
|
+
export { default as RNBOMidiIn } from './RNBOcomponents/RNBOMidiIn.svelte';
|
|
5
|
+
// export { default as RNBOMidiOut } from './RNBOcomponents/RNBOMidiOut.svelte';
|
|
6
|
+
export { default as RNBOInlet } from './RNBOcomponents/RNBOInlet.svelte';
|
|
7
|
+
export { default as RNBOInport } from './RNBOcomponents/RNBOInport.svelte';
|
|
8
|
+
export { default as RNBOOutport } from './RNBOcomponents/RNBOOutport.svelte';
|
|
9
|
+
|
|
10
|
+
export { default as XYMidiIn } from './RNBOcomponents/XYMidiIn.svelte';
|
|
11
|
+
export { default as ExtMidiIn } from './RNBOcomponents/ExtMidiIn.svelte';
|
|
12
|
+
// export { default as ExtMidiOut } from './RNBOcomponents/ExtMidiOut.svelte';
|
|
13
|
+
export { default as MicIn } from './RNBOcomponents/MicIn.svelte';
|
|
14
|
+
export { default as AudioDropIn } from './RNBOcomponents/AudioDropIn.svelte';
|
|
15
|
+
|
|
16
|
+
export { default as FileDropZone } from './UIcomponents/FileDropZone.svelte';
|
|
17
|
+
export { default as ProgressBar } from './UIcomponents/ProgressBar.svelte';
|
|
18
|
+
export { default as RadioGroup } from './UIcomponents/RadioGroup.svelte';
|
|
19
|
+
export { default as RadioItem } from './UIcomponents/RadioItem.svelte';
|
|
20
|
+
export { default as RangeSlider } from './UIcomponents/RangeSlider.svelte';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tialro2/rnbokit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@playwright/test": "^1.60.0",
|
|
20
20
|
"@sveltejs/adapter-auto": "^7.0.1",
|
|
21
|
-
"@sveltejs/kit": "^2.
|
|
21
|
+
"@sveltejs/kit": "^2.61.1",
|
|
22
22
|
"@sveltejs/package": "^2.5.7",
|
|
23
23
|
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
24
24
|
"eslint": "^10.4.0",
|
|
25
25
|
"eslint-config-prettier": "^10.1.8",
|
|
26
|
-
"eslint-plugin-svelte": "^3.
|
|
26
|
+
"eslint-plugin-svelte": "^3.18.0",
|
|
27
27
|
"prettier": "^3.8.3",
|
|
28
|
-
"prettier-plugin-svelte": "^
|
|
28
|
+
"prettier-plugin-svelte": "^4.0.1",
|
|
29
29
|
"publint": "^0.3.21",
|
|
30
|
-
"svelte": "^5.55.
|
|
30
|
+
"svelte": "^5.55.10",
|
|
31
31
|
"svelte-check": "^4.4.8",
|
|
32
32
|
"tslib": "^2.8.1",
|
|
33
33
|
"typescript": "^6.0.3",
|
|
34
|
-
"vite": "^8.0.
|
|
35
|
-
"vitest": "^4.1.
|
|
34
|
+
"vite": "^8.0.14",
|
|
35
|
+
"vitest": "^4.1.7"
|
|
36
36
|
},
|
|
37
37
|
"svelte": "./dist/index.js",
|
|
38
38
|
"types": "./dist/index.d.ts",
|