@grame/faustwasm 0.16.4 → 0.16.5
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/assets/standalone/create-node.js +304 -250
- package/assets/standalone/faust-pwa.js +63 -12
- package/assets/standalone/index-pwa.js +12 -5
- package/package.json +1 -1
- package/test/organ/create-node.js +0 -253
- package/test/organ/dsp-meta.json +0 -132
- package/test/organ/dsp-module.wasm +0 -0
- package/test/organ/faust-pwa.js +0 -344
- package/test/organ/faust-ui/index.css +0 -442
- package/test/organ/faust-ui/index.css.map +0 -1
- package/test/organ/faust-ui/index.d.ts +0 -1
- package/test/organ/faust-ui/index.js +0 -3756
- package/test/organ/faust-ui/index.js.map +0 -1
- package/test/organ/faustwasm/index.d.ts +0 -1824
- package/test/organ/faustwasm/index.js +0 -6178
- package/test/organ/faustwasm/index.js.map +0 -7
- package/test/organ/icon.png +0 -0
- package/test/organ/index.html +0 -76
- package/test/organ/index.js +0 -69
- package/test/organ/manifest.json +0 -17
- package/test/organ/service-worker.js +0 -165
|
@@ -1,442 +0,0 @@
|
|
|
1
|
-
/*!*******************************************************************************************************************!*\
|
|
2
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Base.scss ***!
|
|
3
|
-
\*******************************************************************************************************************/
|
|
4
|
-
.faust-ui-component {
|
|
5
|
-
display: flex;
|
|
6
|
-
position: absolute;
|
|
7
|
-
flex-direction: column;
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
}
|
|
10
|
-
.faust-ui-component:focus {
|
|
11
|
-
outline: none;
|
|
12
|
-
}
|
|
13
|
-
.faust-ui-component > .faust-ui-component-label {
|
|
14
|
-
position: relative;
|
|
15
|
-
margin-top: 4px;
|
|
16
|
-
width: 100%;
|
|
17
|
-
user-select: none;
|
|
18
|
-
}
|
|
19
|
-
.faust-ui-component > .faust-ui-component-label > canvas {
|
|
20
|
-
position: relative;
|
|
21
|
-
display: block;
|
|
22
|
-
max-width: 100%;
|
|
23
|
-
max-height: 100%;
|
|
24
|
-
}
|
|
25
|
-
.faust-ui-component input {
|
|
26
|
-
box-shadow: none;
|
|
27
|
-
}
|
|
28
|
-
/*!**********************************************************************************************************************!*\
|
|
29
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/VSlider.scss ***!
|
|
30
|
-
\**********************************************************************************************************************/
|
|
31
|
-
.faust-ui-component.faust-ui-component-vslider {
|
|
32
|
-
align-items: center;
|
|
33
|
-
}
|
|
34
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-label {
|
|
35
|
-
flex: 0 0 auto;
|
|
36
|
-
}
|
|
37
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv {
|
|
38
|
-
position: relative;
|
|
39
|
-
display: flex;
|
|
40
|
-
flex-direction: column;
|
|
41
|
-
flex: 1 1 auto;
|
|
42
|
-
width: 100%;
|
|
43
|
-
height: auto;
|
|
44
|
-
}
|
|
45
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv > .faust-ui-component-vslider-canvasdiv {
|
|
46
|
-
position: relative;
|
|
47
|
-
display: block;
|
|
48
|
-
flex: 1 1 auto;
|
|
49
|
-
width: 100%;
|
|
50
|
-
}
|
|
51
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv > .faust-ui-component-vslider-canvasdiv > canvas {
|
|
52
|
-
position: absolute;
|
|
53
|
-
display: block;
|
|
54
|
-
height: 100%;
|
|
55
|
-
width: 100%;
|
|
56
|
-
touch-action: none;
|
|
57
|
-
}
|
|
58
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv input {
|
|
59
|
-
position: relative;
|
|
60
|
-
display: block;
|
|
61
|
-
flex: 0 1 auto;
|
|
62
|
-
text-align: center;
|
|
63
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
64
|
-
margin: 5px auto auto auto;
|
|
65
|
-
border-width: 0px;
|
|
66
|
-
border-radius: 4px;
|
|
67
|
-
height: 5%;
|
|
68
|
-
max-width: calc(100% - 8px);
|
|
69
|
-
padding: 2px 4px;
|
|
70
|
-
-moz-appearance: textfield;
|
|
71
|
-
}
|
|
72
|
-
.faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv input::-webkit-outer-spin-button {
|
|
73
|
-
-webkit-appearance: none;
|
|
74
|
-
margin: 0;
|
|
75
|
-
}
|
|
76
|
-
/*!**********************************************************************************************************************!*\
|
|
77
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/HSlider.scss ***!
|
|
78
|
-
\**********************************************************************************************************************/
|
|
79
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-label {
|
|
80
|
-
flex: 0 0 auto;
|
|
81
|
-
}
|
|
82
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv {
|
|
83
|
-
position: relative;
|
|
84
|
-
display: flex;
|
|
85
|
-
flex-direction: row-reverse;
|
|
86
|
-
flex: 1 1 auto;
|
|
87
|
-
width: 100%;
|
|
88
|
-
height: auto;
|
|
89
|
-
}
|
|
90
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > .faust-ui-component-hslider-canvasdiv {
|
|
91
|
-
position: relative;
|
|
92
|
-
display: block;
|
|
93
|
-
flex: 1 1 auto;
|
|
94
|
-
height: 100%;
|
|
95
|
-
margin: auto;
|
|
96
|
-
}
|
|
97
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > .faust-ui-component-hslider-canvasdiv > canvas {
|
|
98
|
-
position: absolute;
|
|
99
|
-
display: block;
|
|
100
|
-
height: 100%;
|
|
101
|
-
width: 100%;
|
|
102
|
-
touch-action: none;
|
|
103
|
-
}
|
|
104
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > input {
|
|
105
|
-
position: relative;
|
|
106
|
-
display: block;
|
|
107
|
-
flex: 0 1 auto;
|
|
108
|
-
text-align: center;
|
|
109
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
110
|
-
margin: auto 5px auto auto;
|
|
111
|
-
border-width: 0px;
|
|
112
|
-
border-radius: 4px;
|
|
113
|
-
width: calc(20% - 13px);
|
|
114
|
-
padding: 2px 4px;
|
|
115
|
-
-moz-appearance: textfield;
|
|
116
|
-
}
|
|
117
|
-
.faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > input::-webkit-outer-spin-button {
|
|
118
|
-
-webkit-appearance: none;
|
|
119
|
-
margin: 0;
|
|
120
|
-
}
|
|
121
|
-
/*!*********************************************************************************************************************!*\
|
|
122
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Nentry.scss ***!
|
|
123
|
-
\*********************************************************************************************************************/
|
|
124
|
-
.faust-ui-component.faust-ui-component-nentry {
|
|
125
|
-
align-items: center;
|
|
126
|
-
}
|
|
127
|
-
.faust-ui-component.faust-ui-component-nentry input {
|
|
128
|
-
margin: 0px;
|
|
129
|
-
text-align: center;
|
|
130
|
-
border-width: 1px;
|
|
131
|
-
border-radius: 4px;
|
|
132
|
-
padding: 2px 4px;
|
|
133
|
-
width: calc(100% - 8px);
|
|
134
|
-
}
|
|
135
|
-
.faust-ui-component.faust-ui-component-nentry input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-nentry input::-webkit-outer-spin-button {
|
|
136
|
-
opacity: 1;
|
|
137
|
-
}
|
|
138
|
-
/*!************************************************************************************************************************!*\
|
|
139
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Soundfile.scss ***!
|
|
140
|
-
\************************************************************************************************************************/
|
|
141
|
-
.faust-ui-component.faust-ui-component-soundfile > div {
|
|
142
|
-
display: flex;
|
|
143
|
-
position: relative;
|
|
144
|
-
cursor: pointer;
|
|
145
|
-
border-width: 1px;
|
|
146
|
-
text-align: center;
|
|
147
|
-
border-radius: 4px;
|
|
148
|
-
flex: 1 0 auto;
|
|
149
|
-
border-style: solid;
|
|
150
|
-
}
|
|
151
|
-
.faust-ui-component.faust-ui-component-soundfile > div > span {
|
|
152
|
-
user-select: none;
|
|
153
|
-
margin: auto;
|
|
154
|
-
}
|
|
155
|
-
/*!*********************************************************************************************************************!*\
|
|
156
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Button.scss ***!
|
|
157
|
-
\*********************************************************************************************************************/
|
|
158
|
-
.faust-ui-component.faust-ui-component-button > div {
|
|
159
|
-
display: flex;
|
|
160
|
-
position: relative;
|
|
161
|
-
cursor: pointer;
|
|
162
|
-
border-width: 1px;
|
|
163
|
-
text-align: center;
|
|
164
|
-
border-radius: 4px;
|
|
165
|
-
flex: 1 0 auto;
|
|
166
|
-
border-style: solid;
|
|
167
|
-
touch-action: none;
|
|
168
|
-
}
|
|
169
|
-
.faust-ui-component.faust-ui-component-button > div > span {
|
|
170
|
-
user-select: none;
|
|
171
|
-
margin: auto;
|
|
172
|
-
}
|
|
173
|
-
/*!***********************************************************************************************************************!*\
|
|
174
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Checkbox.scss ***!
|
|
175
|
-
\***********************************************************************************************************************/
|
|
176
|
-
.faust-ui-component.faust-ui-component-checkbox > div {
|
|
177
|
-
display: flex;
|
|
178
|
-
position: relative;
|
|
179
|
-
cursor: pointer;
|
|
180
|
-
border-width: 1px;
|
|
181
|
-
text-align: center;
|
|
182
|
-
border-radius: 1px;
|
|
183
|
-
flex: 1 0 auto;
|
|
184
|
-
border-style: solid;
|
|
185
|
-
touch-action: none;
|
|
186
|
-
}
|
|
187
|
-
.faust-ui-component.faust-ui-component-checkbox > div > span {
|
|
188
|
-
margin: auto;
|
|
189
|
-
user-select: none;
|
|
190
|
-
}
|
|
191
|
-
/*!*******************************************************************************************************************!*\
|
|
192
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Knob.scss ***!
|
|
193
|
-
\*******************************************************************************************************************/
|
|
194
|
-
.faust-ui-component.faust-ui-component-knob {
|
|
195
|
-
align-items: center;
|
|
196
|
-
}
|
|
197
|
-
.faust-ui-component.faust-ui-component-knob > canvas {
|
|
198
|
-
position: relative;
|
|
199
|
-
display: block;
|
|
200
|
-
flex: 1 1 auto;
|
|
201
|
-
min-height: 50%;
|
|
202
|
-
width: 100%;
|
|
203
|
-
touch-action: none;
|
|
204
|
-
}
|
|
205
|
-
.faust-ui-component.faust-ui-component-knob > input {
|
|
206
|
-
position: relative;
|
|
207
|
-
display: block;
|
|
208
|
-
flex: 0 1 auto;
|
|
209
|
-
text-align: center;
|
|
210
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
211
|
-
margin: 0px;
|
|
212
|
-
border-width: 0px;
|
|
213
|
-
border-radius: 4px;
|
|
214
|
-
max-width: calc(100% - 8px);
|
|
215
|
-
padding: 2px 4px;
|
|
216
|
-
-moz-appearance: textfield;
|
|
217
|
-
}
|
|
218
|
-
.faust-ui-component.faust-ui-component-knob > input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-knob > input::-webkit-outer-spin-button {
|
|
219
|
-
-webkit-appearance: none;
|
|
220
|
-
margin: 0;
|
|
221
|
-
}
|
|
222
|
-
/*!*******************************************************************************************************************!*\
|
|
223
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Menu.scss ***!
|
|
224
|
-
\*******************************************************************************************************************/
|
|
225
|
-
.faust-ui-component.faust-ui-component-menu {
|
|
226
|
-
align-items: center;
|
|
227
|
-
}
|
|
228
|
-
.faust-ui-component.faust-ui-component-menu > select {
|
|
229
|
-
margin: 0px;
|
|
230
|
-
text-align: center;
|
|
231
|
-
border-width: 1px;
|
|
232
|
-
border-radius: 4px;
|
|
233
|
-
padding: 2px 4px;
|
|
234
|
-
width: calc(100% - 8px);
|
|
235
|
-
}
|
|
236
|
-
/*!********************************************************************************************************************!*\
|
|
237
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Radio.scss ***!
|
|
238
|
-
\********************************************************************************************************************/
|
|
239
|
-
.faust-ui-component.faust-ui-component-radio {
|
|
240
|
-
align-items: center;
|
|
241
|
-
}
|
|
242
|
-
.faust-ui-component.faust-ui-component-radio > .faust-ui-component-label {
|
|
243
|
-
flex: 0 0 auto;
|
|
244
|
-
margin-top: auto;
|
|
245
|
-
}
|
|
246
|
-
.faust-ui-component.faust-ui-component-radio > .faust-ui-component-radio-group {
|
|
247
|
-
flex: 0 1 auto;
|
|
248
|
-
margin-bottom: auto;
|
|
249
|
-
border-width: 1px;
|
|
250
|
-
border-radius: 4px;
|
|
251
|
-
padding: 2px 4px;
|
|
252
|
-
width: calc(100% - 8px);
|
|
253
|
-
overflow: auto;
|
|
254
|
-
}
|
|
255
|
-
.faust-ui-component.faust-ui-component-radio > .faust-ui-component-radio-group > div {
|
|
256
|
-
text-overflow: ellipsis;
|
|
257
|
-
white-space: nowrap;
|
|
258
|
-
overflow: hidden;
|
|
259
|
-
}
|
|
260
|
-
/*!******************************************************************************************************************!*\
|
|
261
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Led.scss ***!
|
|
262
|
-
\******************************************************************************************************************/
|
|
263
|
-
.faust-ui-component.faust-ui-component-led {
|
|
264
|
-
align-items: center;
|
|
265
|
-
}
|
|
266
|
-
.faust-ui-component.faust-ui-component-led > .faust-ui-component-label {
|
|
267
|
-
flex: 0 0 auto;
|
|
268
|
-
}
|
|
269
|
-
.faust-ui-component.faust-ui-component-led > .faust-ui-component-led-canvasdiv {
|
|
270
|
-
position: relative;
|
|
271
|
-
display: block;
|
|
272
|
-
flex: 1 1 auto;
|
|
273
|
-
width: 100%;
|
|
274
|
-
}
|
|
275
|
-
.faust-ui-component.faust-ui-component-led > .faust-ui-component-led-canvasdiv > canvas {
|
|
276
|
-
position: absolute;
|
|
277
|
-
display: block;
|
|
278
|
-
height: 100%;
|
|
279
|
-
width: 100%;
|
|
280
|
-
touch-action: none;
|
|
281
|
-
}
|
|
282
|
-
/*!************************************************************************************************************************!*\
|
|
283
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Numerical.scss ***!
|
|
284
|
-
\************************************************************************************************************************/
|
|
285
|
-
.faust-ui-component.faust-ui-component-numerical {
|
|
286
|
-
align-items: center;
|
|
287
|
-
}
|
|
288
|
-
.faust-ui-component.faust-ui-component-numerical > input {
|
|
289
|
-
position: relative;
|
|
290
|
-
display: block;
|
|
291
|
-
flex: 0 1 auto;
|
|
292
|
-
text-align: center;
|
|
293
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
294
|
-
margin: auto;
|
|
295
|
-
border-width: 0px;
|
|
296
|
-
border-radius: 4px;
|
|
297
|
-
width: calc(100% - 8px);
|
|
298
|
-
padding: 2px 4px;
|
|
299
|
-
}
|
|
300
|
-
/*!************************************************************************************************************************!*\
|
|
301
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/VBargraph.scss ***!
|
|
302
|
-
\************************************************************************************************************************/
|
|
303
|
-
.faust-ui-component.faust-ui-component-vbargraph {
|
|
304
|
-
align-items: center;
|
|
305
|
-
}
|
|
306
|
-
.faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-label {
|
|
307
|
-
flex: 0 0 auto;
|
|
308
|
-
}
|
|
309
|
-
.faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv {
|
|
310
|
-
position: relative;
|
|
311
|
-
display: flex;
|
|
312
|
-
flex-direction: column;
|
|
313
|
-
flex: 1 1 auto;
|
|
314
|
-
width: 100%;
|
|
315
|
-
height: inherit;
|
|
316
|
-
}
|
|
317
|
-
.faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > .faust-ui-component-vbargraph-canvasdiv {
|
|
318
|
-
position: relative;
|
|
319
|
-
display: block;
|
|
320
|
-
flex: 1 1 auto;
|
|
321
|
-
width: 100%;
|
|
322
|
-
}
|
|
323
|
-
.faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > .faust-ui-component-vbargraph-canvasdiv > canvas {
|
|
324
|
-
position: absolute;
|
|
325
|
-
display: block;
|
|
326
|
-
height: 100%;
|
|
327
|
-
width: 100%;
|
|
328
|
-
touch-action: none;
|
|
329
|
-
}
|
|
330
|
-
.faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > input {
|
|
331
|
-
position: relative;
|
|
332
|
-
display: block;
|
|
333
|
-
flex: 0 1 auto;
|
|
334
|
-
text-align: center;
|
|
335
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
336
|
-
margin: 5px auto auto auto;
|
|
337
|
-
border-width: 0px;
|
|
338
|
-
border-radius: 4px;
|
|
339
|
-
height: 5%;
|
|
340
|
-
width: calc(100% - 8px);
|
|
341
|
-
padding: 2px 4px;
|
|
342
|
-
}
|
|
343
|
-
/*!************************************************************************************************************************!*\
|
|
344
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/HBargraph.scss ***!
|
|
345
|
-
\************************************************************************************************************************/
|
|
346
|
-
.faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-label {
|
|
347
|
-
flex: 0 0 auto;
|
|
348
|
-
}
|
|
349
|
-
.faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv {
|
|
350
|
-
position: relative;
|
|
351
|
-
display: flex;
|
|
352
|
-
flex-direction: row-reverse;
|
|
353
|
-
flex: 1 1 auto;
|
|
354
|
-
width: 100%;
|
|
355
|
-
height: auto;
|
|
356
|
-
}
|
|
357
|
-
.faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > .faust-ui-component-hbargraph-canvasdiv {
|
|
358
|
-
position: relative;
|
|
359
|
-
display: block;
|
|
360
|
-
flex: 1 1 auto;
|
|
361
|
-
height: 100%;
|
|
362
|
-
margin: auto;
|
|
363
|
-
}
|
|
364
|
-
.faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > .faust-ui-component-hbargraph-canvasdiv > canvas {
|
|
365
|
-
position: absolute;
|
|
366
|
-
display: block;
|
|
367
|
-
height: 100%;
|
|
368
|
-
width: 100%;
|
|
369
|
-
touch-action: none;
|
|
370
|
-
}
|
|
371
|
-
.faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > input {
|
|
372
|
-
position: relative;
|
|
373
|
-
display: block;
|
|
374
|
-
flex: 0 1 auto;
|
|
375
|
-
text-align: center;
|
|
376
|
-
background-color: rgba(255, 255, 255, 0.25);
|
|
377
|
-
margin: auto 5px auto auto;
|
|
378
|
-
border-width: 0px;
|
|
379
|
-
border-radius: 4px;
|
|
380
|
-
width: calc(20% - 13px);
|
|
381
|
-
padding: 2px 4px;
|
|
382
|
-
}
|
|
383
|
-
/*!********************************************************************************************************************!*\
|
|
384
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Group.scss ***!
|
|
385
|
-
\********************************************************************************************************************/
|
|
386
|
-
.faust-ui-group {
|
|
387
|
-
position: absolute;
|
|
388
|
-
display: block;
|
|
389
|
-
background-color: rgba(80, 80, 80, 0.75);
|
|
390
|
-
border-radius: 4px;
|
|
391
|
-
border: 1px rgba(255, 255, 255, 0.25) solid;
|
|
392
|
-
}
|
|
393
|
-
.faust-ui-group > .faust-ui-group-label {
|
|
394
|
-
position: relative;
|
|
395
|
-
margin: 4px;
|
|
396
|
-
width: calc(100% - 8px);
|
|
397
|
-
user-select: none;
|
|
398
|
-
}
|
|
399
|
-
.faust-ui-group > .faust-ui-group-label > canvas {
|
|
400
|
-
position: relative;
|
|
401
|
-
display: block;
|
|
402
|
-
max-width: 100%;
|
|
403
|
-
max-height: 100%;
|
|
404
|
-
}
|
|
405
|
-
.faust-ui-group .faust-ui-tgroup-tabs {
|
|
406
|
-
position: absolute;
|
|
407
|
-
display: inline-block;
|
|
408
|
-
white-space: nowrap;
|
|
409
|
-
left: 0px;
|
|
410
|
-
}
|
|
411
|
-
.faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab {
|
|
412
|
-
position: relative;
|
|
413
|
-
display: inline-block;
|
|
414
|
-
border-radius: 5px;
|
|
415
|
-
cursor: pointer;
|
|
416
|
-
text-overflow: ellipsis;
|
|
417
|
-
white-space: nowrap;
|
|
418
|
-
user-select: none;
|
|
419
|
-
margin: 10px;
|
|
420
|
-
text-align: center;
|
|
421
|
-
background-color: rgba(255, 255, 255, 0.5);
|
|
422
|
-
}
|
|
423
|
-
.faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab:hover {
|
|
424
|
-
background-color: rgb(255, 255, 255);
|
|
425
|
-
}
|
|
426
|
-
.faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab.active {
|
|
427
|
-
background-color: rgb(40, 40, 40);
|
|
428
|
-
color: white;
|
|
429
|
-
}
|
|
430
|
-
/*!*********************************************************************************************************!*\
|
|
431
|
-
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
|
|
432
|
-
\*********************************************************************************************************/
|
|
433
|
-
.faust-ui-root {
|
|
434
|
-
margin: 0px auto;
|
|
435
|
-
flex: 1 0 auto;
|
|
436
|
-
position: relative !important;
|
|
437
|
-
background-color: transparent !important;
|
|
438
|
-
border: none !important;
|
|
439
|
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
/*# sourceMappingURL=index.css.map*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.css","mappings":";;;AAAA;EACI;EACA;EACA;EACA;AACJ;AAAI;EACI;AAER;AAAI;EACI;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;EACA;AAGZ;AAAI;EACI;AAER,C;;;;ACvBA;EACI;AACJ;AAAI;EACI;AAER;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;EACA;AAGZ;AAFY;EACI;EACA;EACA;EACA;EACA;AAIhB;AADQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAGZ;AAFY;EAEI;EACA;AAGhB,C;;;;AC3CI;EACI;AAAR;AAEI;EACI;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;EACA;EACA;EACA;AACZ;AAAY;EACI;EACA;EACA;EACA;EACA;AAEhB;AACQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACZ;AAAY;EAEI;EACA;AAChB,C;;;;ACzCA;EACI;AACJ;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EAEI;AAEZ,C;;;;ACZI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;AACZ,C;;;;ACZI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;AACZ,C;;;;ACbI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;AACZ,C;;;;ACdA;EACI;AACJ;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;AAER;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EAEI;EACA;AAEZ,C;;;;AC3BA;EACI;AACJ;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;AAER,C;;;;ACVA;EACI;AACJ;AAAI;EACI;EACA;AAER;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;AAGZ,C;;;;ACpBA;EACI;AACJ;AAAI;EACI;AAER;AAAI;EACI;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;EACA;EACA;AAGZ,C;;;;AClBA;EACI;AACJ;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAER,C;;;;ACdA;EACI;AACJ;AAAI;EACI;AAER;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;EACA;AAGZ;AAFY;EACI;EACA;EACA;EACA;EACA;AAIhB;AADQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAGZ,C;;;;ACtCI;EACI;AAAR;AAEI;EACI;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;EACA;EACA;EACA;AACZ;AAAY;EACI;EACA;EACA;EACA;EACA;AAEhB;AACQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACZ,C;;;;ACnCA;EACI;EACA;EACA;EACA;EACA;AAAJ;AACI;EACI;EACA;EACA;EACA;AACR;AAAQ;EACI;EACA;EACA;EACA;AAEZ;AACI;EACI;EACA;EACA;EACA;AACR;AAAQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEZ;AADY;EACI;AAGhB;AADY;EACI;EACA;AAGhB,C;;;;AC3CA;EACI;EACA;EACA;EACA;EACA;EACA;AACJ,C","sources":["webpack://@shren/faust-ui/./src/components/Base.scss","webpack://@shren/faust-ui/./src/components/VSlider.scss","webpack://@shren/faust-ui/./src/components/HSlider.scss","webpack://@shren/faust-ui/./src/components/Nentry.scss","webpack://@shren/faust-ui/./src/components/Soundfile.scss","webpack://@shren/faust-ui/./src/components/Button.scss","webpack://@shren/faust-ui/./src/components/Checkbox.scss","webpack://@shren/faust-ui/./src/components/Knob.scss","webpack://@shren/faust-ui/./src/components/Menu.scss","webpack://@shren/faust-ui/./src/components/Radio.scss","webpack://@shren/faust-ui/./src/components/Led.scss","webpack://@shren/faust-ui/./src/components/Numerical.scss","webpack://@shren/faust-ui/./src/components/VBargraph.scss","webpack://@shren/faust-ui/./src/components/HBargraph.scss","webpack://@shren/faust-ui/./src/components/Group.scss","webpack://@shren/faust-ui/./src/index.scss"],"sourcesContent":[".faust-ui-component {\n display: flex;\n position: absolute;\n flex-direction: column;\n overflow: hidden;\n &:focus {\n outline: none;\n }\n & > .faust-ui-component-label {\n position: relative;\n margin-top: 4px;\n width: 100%;\n user-select: none;\n & > canvas {\n position: relative;\n display: block;\n max-width: 100%;\n max-height: 100%;\n }\n }\n & input {\n box-shadow: none;\n }\n}",".faust-ui-component.faust-ui-component-vslider {\n align-items: center;\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n }\n & > .faust-ui-component-vslider-flexdiv {\n position: relative;\n display: flex;\n flex-direction: column;\n flex: 1 1 auto;\n width: 100%;\n height: auto;\n & > .faust-ui-component-vslider-canvasdiv {\n position: relative;\n display: block;\n flex: 1 1 auto;\n width: 100%;\n & > canvas {\n position: absolute;\n display: block;\n height: 100%;\n width: 100%;\n touch-action: none;\n }\n }\n & input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: 5px auto auto auto;\n border-width: 0px;\n border-radius: 4px;\n height: 5%;\n max-width: calc(100% - 8px);\n padding: 2px 4px;\n -moz-appearance:textfield;\n &::-webkit-inner-spin-button, \n &::-webkit-outer-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n }\n }\n}",".faust-ui-component.faust-ui-component-hslider {\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n }\n & > .faust-ui-component-hslider-flexdiv {\n position: relative;\n display: flex;\n flex-direction: row-reverse;\n flex: 1 1 auto;\n width: 100%;\n height: auto;\n & > .faust-ui-component-hslider-canvasdiv {\n position: relative;\n display: block;\n flex: 1 1 auto;\n height: 100%;\n margin: auto;\n & > canvas {\n position: absolute;\n display: block;\n height: 100%;\n width: 100%;\n touch-action: none;\n }\n }\n & > input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: auto 5px auto auto;\n border-width: 0px;\n border-radius: 4px;\n width: calc(20% - 13px);\n padding: 2px 4px;\n -moz-appearance: textfield;\n &::-webkit-inner-spin-button, \n &::-webkit-outer-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n }\n }\n}\n",".faust-ui-component.faust-ui-component-nentry {\n align-items: center;\n & input {\n margin: 0px;\n text-align: center;\n border-width: 1px;\n border-radius: 4px;\n padding: 2px 4px;\n width: calc(100% - 8px);\n &::-webkit-inner-spin-button, \n &::-webkit-outer-spin-button {\n opacity: 1;\n }\n }\n}",".faust-ui-component.faust-ui-component-soundfile {\n & > div {\n display: flex;\n position: relative;\n cursor: pointer;\n border-width: 1px;\n text-align: center;\n border-radius: 4px;\n flex: 1 0 auto;\n border-style: solid;\n & > span {\n user-select: none;\n margin: auto;\n }\n }\n}",".faust-ui-component.faust-ui-component-button {\n & > div {\n display: flex;\n position: relative;\n cursor: pointer;\n border-width: 1px;\n text-align: center;\n border-radius: 4px;\n flex: 1 0 auto;\n border-style: solid;\n touch-action: none;\n & > span {\n user-select: none;\n margin: auto;\n }\n }\n}",".faust-ui-component.faust-ui-component-checkbox {\n & > div {\n display: flex;\n position: relative;\n cursor: pointer;\n border-width: 1px;\n text-align: center;\n border-radius: 1px;\n flex: 1 0 auto;\n border-style: solid;\n touch-action: none;\n & > span {\n margin: auto;\n user-select: none;\n }\n }\n}",".faust-ui-component.faust-ui-component-knob {\n align-items: center;\n & > canvas {\n position: relative;\n display: block;\n flex: 1 1 auto;\n min-height: 50%;\n width: 100%;\n touch-action: none;\n }\n & > input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: 0px;\n border-width: 0px;\n border-radius: 4px;\n max-width: calc(100% - 8px);\n padding: 2px 4px;\n -moz-appearance: textfield;\n &::-webkit-inner-spin-button, \n &::-webkit-outer-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n }\n}",".faust-ui-component.faust-ui-component-menu {\n align-items: center;\n & > select {\n margin: 0px;\n text-align: center;\n border-width: 1px;\n border-radius: 4px;\n padding: 2px 4px;\n width: calc(100% - 8px);\n }\n}",".faust-ui-component.faust-ui-component-radio {\n align-items: center;\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n margin-top: auto;\n }\n & > .faust-ui-component-radio-group {\n flex: 0 1 auto;\n margin-bottom: auto;\n border-width: 1px;\n border-radius: 4px;\n padding: 2px 4px;\n width: calc(100% - 8px);\n overflow: auto;\n & > div {\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n }\n }\n}",".faust-ui-component.faust-ui-component-led {\n align-items: center;\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n }\n & > .faust-ui-component-led-canvasdiv {\n position: relative;\n display: block;\n flex: 1 1 auto;\n width: 100%;\n & > canvas {\n position: absolute;\n display: block;\n height: 100%;\n width: 100%;\n touch-action: none;\n }\n }\n}\n",".faust-ui-component.faust-ui-component-numerical {\n align-items: center;\n & > input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: auto;\n border-width: 0px;\n border-radius: 4px;\n width: calc(100% - 8px);\n padding: 2px 4px;\n }\n}",".faust-ui-component.faust-ui-component-vbargraph {\n align-items: center;\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n }\n & > .faust-ui-component-vbargraph-flexdiv {\n position: relative;\n display: flex;\n flex-direction: column;\n flex: 1 1 auto;\n width: 100%;\n height: inherit;\n & > .faust-ui-component-vbargraph-canvasdiv {\n position: relative;\n display: block;\n flex: 1 1 auto;\n width: 100%;\n & > canvas {\n position: absolute;\n display: block;\n height: 100%;\n width: 100%;\n touch-action: none;\n }\n }\n & > input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: 5px auto auto auto;\n border-width: 0px;\n border-radius: 4px;\n height: 5%;\n width: calc(100% - 8px);\n padding: 2px 4px;\n }\n }\n}\n",".faust-ui-component.faust-ui-component-hbargraph {\n & > .faust-ui-component-label {\n flex: 0 0 auto;\n }\n & > .faust-ui-component-hbargraph-flexdiv {\n position: relative;\n display: flex;\n flex-direction: row-reverse;\n flex: 1 1 auto;\n width: 100%;\n height: auto;\n & > .faust-ui-component-hbargraph-canvasdiv {\n position: relative;\n display: block;\n flex: 1 1 auto;\n height: 100%;\n margin: auto;\n & > canvas {\n position: absolute;\n display: block;\n height: 100%;\n width: 100%;\n touch-action: none;\n }\n }\n & > input {\n position: relative;\n display: block;\n flex: 0 1 auto;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.25);\n margin: auto 5px auto auto;\n border-width: 0px;\n border-radius: 4px;\n width: calc(20% - 13px);\n padding: 2px 4px;\n }\n }\n}","\n.faust-ui-group {\n position: absolute;\n display: block;\n background-color: rgba(80, 80, 80, 0.75);\n border-radius: 4px;\n border: 1px rgba(255, 255, 255, 0.25) solid;\n & > .faust-ui-group-label {\n position: relative;\n margin: 4px;\n width: calc(100% - 8px);\n user-select: none;\n & > canvas {\n position: relative;\n display: block;\n max-width: 100%;\n max-height: 100%;\n }\n }\n & .faust-ui-tgroup-tabs {\n position: absolute;\n display: inline-block;\n white-space: nowrap;\n left: 0px;\n & .faust-ui-tgroup-tab {\n position: relative;\n display: inline-block;\n border-radius: 5px;\n cursor: pointer;\n text-overflow: ellipsis;\n white-space: nowrap;\n user-select: none;\n margin: 10px;\n text-align: center;\n background-color: rgba(255, 255, 255, 0.5);\n &:hover {\n background-color: rgba(255, 255, 255, 1);\n }\n &.active {\n background-color: rgba(40, 40, 40, 1);\n color: white;\n }\n }\n }\n}",".faust-ui-root {\n margin: 0px auto;\n flex: 1 0 auto;\n position: relative !important;\n background-color: transparent !important;\n border: none !important;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n}"],"names":[],"sourceRoot":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "@shren/faust-ui";
|