@grame/faustwasm 0.0.63 → 0.0.64

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grame/faustwasm",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "description": "WebAssembly version of Faust Compiler",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/esm/index.d.ts",
package/test/gain.dsp DELETED
@@ -1,2 +0,0 @@
1
- gain = hslider("Vol",0.5,0,1,0.01);
2
- process = *(gain),*(gain);
@@ -1,416 +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
- }
57
- .faust-ui-component.faust-ui-component-vslider > .faust-ui-component-vslider-flexdiv input {
58
- position: relative;
59
- display: block;
60
- flex: 0 1 auto;
61
- text-align: center;
62
- background-color: rgba(255, 255, 255, 0.25);
63
- margin: 5px auto auto auto;
64
- border-width: 0px;
65
- border-radius: 4px;
66
- height: 5%;
67
- max-width: calc(100% - 8px);
68
- padding: 2px 4px;
69
- -moz-appearance: textfield;
70
- }
71
- .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 {
72
- -webkit-appearance: none;
73
- margin: 0;
74
- }
75
- /*!**********************************************************************************************************************!*\
76
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/HSlider.scss ***!
77
- \**********************************************************************************************************************/
78
- .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-label {
79
- flex: 0 0 auto;
80
- }
81
- .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv {
82
- position: relative;
83
- display: flex;
84
- flex-direction: row-reverse;
85
- flex: 1 1 auto;
86
- width: 100%;
87
- height: auto;
88
- }
89
- .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > .faust-ui-component-hslider-canvasdiv {
90
- position: relative;
91
- display: block;
92
- flex: 1 1 auto;
93
- height: 100%;
94
- margin: auto;
95
- }
96
- .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > .faust-ui-component-hslider-canvasdiv > canvas {
97
- position: absolute;
98
- display: block;
99
- height: 100%;
100
- width: 100%;
101
- }
102
- .faust-ui-component.faust-ui-component-hslider > .faust-ui-component-hslider-flexdiv > input {
103
- position: relative;
104
- display: block;
105
- flex: 0 1 auto;
106
- text-align: center;
107
- background-color: rgba(255, 255, 255, 0.25);
108
- margin: auto 5px auto auto;
109
- border-width: 0px;
110
- border-radius: 4px;
111
- width: calc(20% - 13px);
112
- padding: 2px 4px;
113
- -moz-appearance: textfield;
114
- }
115
- .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 {
116
- -webkit-appearance: none;
117
- margin: 0;
118
- }
119
- /*!*********************************************************************************************************************!*\
120
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Nentry.scss ***!
121
- \*********************************************************************************************************************/
122
- .faust-ui-component.faust-ui-component-nentry {
123
- align-items: center;
124
- }
125
- .faust-ui-component.faust-ui-component-nentry input {
126
- margin: 0px;
127
- text-align: center;
128
- border-width: 1px;
129
- border-radius: 4px;
130
- padding: 2px 4px;
131
- width: calc(100% - 8px);
132
- }
133
- .faust-ui-component.faust-ui-component-nentry input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-nentry input::-webkit-outer-spin-button {
134
- opacity: 1;
135
- }
136
- /*!*********************************************************************************************************************!*\
137
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Button.scss ***!
138
- \*********************************************************************************************************************/
139
- .faust-ui-component.faust-ui-component-button > div {
140
- display: flex;
141
- position: relative;
142
- cursor: pointer;
143
- border-width: 1px;
144
- text-align: center;
145
- border-radius: 4px;
146
- flex: 1 0 auto;
147
- border-style: solid;
148
- }
149
- .faust-ui-component.faust-ui-component-button > div > span {
150
- user-select: none;
151
- margin: auto;
152
- }
153
- /*!***********************************************************************************************************************!*\
154
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Checkbox.scss ***!
155
- \***********************************************************************************************************************/
156
- .faust-ui-component.faust-ui-component-checkbox > div {
157
- display: flex;
158
- position: relative;
159
- cursor: pointer;
160
- border-width: 1px;
161
- text-align: center;
162
- border-radius: 1px;
163
- flex: 1 0 auto;
164
- border-style: solid;
165
- }
166
- .faust-ui-component.faust-ui-component-checkbox > div > span {
167
- margin: auto;
168
- user-select: none;
169
- }
170
- /*!*******************************************************************************************************************!*\
171
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Knob.scss ***!
172
- \*******************************************************************************************************************/
173
- .faust-ui-component.faust-ui-component-knob {
174
- align-items: center;
175
- }
176
- .faust-ui-component.faust-ui-component-knob > canvas {
177
- position: relative;
178
- display: block;
179
- flex: 1 1 auto;
180
- min-height: 50%;
181
- width: 100%;
182
- }
183
- .faust-ui-component.faust-ui-component-knob > input {
184
- position: relative;
185
- display: block;
186
- flex: 0 1 auto;
187
- text-align: center;
188
- background-color: rgba(255, 255, 255, 0.25);
189
- margin: 0px;
190
- border-width: 0px;
191
- border-radius: 4px;
192
- max-width: calc(100% - 8px);
193
- padding: 2px 4px;
194
- -moz-appearance: textfield;
195
- }
196
- .faust-ui-component.faust-ui-component-knob > input::-webkit-inner-spin-button, .faust-ui-component.faust-ui-component-knob > input::-webkit-outer-spin-button {
197
- -webkit-appearance: none;
198
- margin: 0;
199
- }
200
- /*!*******************************************************************************************************************!*\
201
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Menu.scss ***!
202
- \*******************************************************************************************************************/
203
- .faust-ui-component.faust-ui-component-menu {
204
- align-items: center;
205
- }
206
- .faust-ui-component.faust-ui-component-menu > select {
207
- margin: 0px;
208
- text-align: center;
209
- border-width: 1px;
210
- border-radius: 4px;
211
- padding: 2px 4px;
212
- width: calc(100% - 8px);
213
- }
214
- /*!********************************************************************************************************************!*\
215
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Radio.scss ***!
216
- \********************************************************************************************************************/
217
- .faust-ui-component.faust-ui-component-radio {
218
- align-items: center;
219
- }
220
- .faust-ui-component.faust-ui-component-radio > .faust-ui-component-label {
221
- flex: 0 0 auto;
222
- margin-top: auto;
223
- }
224
- .faust-ui-component.faust-ui-component-radio > .faust-ui-component-radio-group {
225
- flex: 0 0 auto;
226
- margin-bottom: auto;
227
- border-width: 1px;
228
- border-radius: 4px;
229
- padding: 2px 4px;
230
- width: calc(100% - 8px);
231
- }
232
- .faust-ui-component.faust-ui-component-radio > .faust-ui-component-radio-group > div {
233
- text-overflow: ellipsis;
234
- white-space: nowrap;
235
- overflow: hidden;
236
- }
237
- /*!******************************************************************************************************************!*\
238
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Led.scss ***!
239
- \******************************************************************************************************************/
240
- .faust-ui-component.faust-ui-component-led {
241
- align-items: center;
242
- }
243
- .faust-ui-component.faust-ui-component-led > .faust-ui-component-label {
244
- flex: 0 0 auto;
245
- }
246
- .faust-ui-component.faust-ui-component-led > .faust-ui-component-led-canvasdiv {
247
- position: relative;
248
- display: block;
249
- flex: 1 1 auto;
250
- width: 100%;
251
- }
252
- .faust-ui-component.faust-ui-component-led > .faust-ui-component-led-canvasdiv > canvas {
253
- position: absolute;
254
- display: block;
255
- height: 100%;
256
- width: 100%;
257
- }
258
- /*!************************************************************************************************************************!*\
259
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Numerical.scss ***!
260
- \************************************************************************************************************************/
261
- .faust-ui-component.faust-ui-component-numerical {
262
- align-items: center;
263
- }
264
- .faust-ui-component.faust-ui-component-numerical > input {
265
- position: relative;
266
- display: block;
267
- flex: 0 1 auto;
268
- text-align: center;
269
- background-color: rgba(255, 255, 255, 0.25);
270
- margin: auto;
271
- border-width: 0px;
272
- border-radius: 4px;
273
- width: calc(100% - 8px);
274
- padding: 2px 4px;
275
- }
276
- /*!************************************************************************************************************************!*\
277
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/VBargraph.scss ***!
278
- \************************************************************************************************************************/
279
- .faust-ui-component.faust-ui-component-vbargraph {
280
- align-items: center;
281
- }
282
- .faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-label {
283
- flex: 0 0 auto;
284
- }
285
- .faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv {
286
- position: relative;
287
- display: flex;
288
- flex-direction: column;
289
- flex: 1 1 auto;
290
- width: 100%;
291
- height: inherit;
292
- }
293
- .faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > .faust-ui-component-vbargraph-canvasdiv {
294
- position: relative;
295
- display: block;
296
- flex: 1 1 auto;
297
- width: 100%;
298
- }
299
- .faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > .faust-ui-component-vbargraph-canvasdiv > canvas {
300
- position: absolute;
301
- display: block;
302
- height: 100%;
303
- width: 100%;
304
- }
305
- .faust-ui-component.faust-ui-component-vbargraph > .faust-ui-component-vbargraph-flexdiv > input {
306
- position: relative;
307
- display: block;
308
- flex: 0 1 auto;
309
- text-align: center;
310
- background-color: rgba(255, 255, 255, 0.25);
311
- margin: 5px auto auto auto;
312
- border-width: 0px;
313
- border-radius: 4px;
314
- height: 5%;
315
- width: calc(100% - 8px);
316
- padding: 2px 4px;
317
- }
318
- /*!************************************************************************************************************************!*\
319
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/HBargraph.scss ***!
320
- \************************************************************************************************************************/
321
- .faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-label {
322
- flex: 0 0 auto;
323
- }
324
- .faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv {
325
- position: relative;
326
- display: flex;
327
- flex-direction: row-reverse;
328
- flex: 1 1 auto;
329
- width: 100%;
330
- height: auto;
331
- }
332
- .faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > .faust-ui-component-hbargraph-canvasdiv {
333
- position: relative;
334
- display: block;
335
- flex: 1 1 auto;
336
- height: 100%;
337
- margin: auto;
338
- }
339
- .faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > .faust-ui-component-hbargraph-canvasdiv > canvas {
340
- position: absolute;
341
- display: block;
342
- height: 100%;
343
- width: 100%;
344
- }
345
- .faust-ui-component.faust-ui-component-hbargraph > .faust-ui-component-hbargraph-flexdiv > input {
346
- position: relative;
347
- display: block;
348
- flex: 0 1 auto;
349
- text-align: center;
350
- background-color: rgba(255, 255, 255, 0.25);
351
- margin: auto 5px auto auto;
352
- border-width: 0px;
353
- border-radius: 4px;
354
- width: calc(20% - 13px);
355
- padding: 2px 4px;
356
- }
357
- /*!********************************************************************************************************************!*\
358
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/Group.scss ***!
359
- \********************************************************************************************************************/
360
- .faust-ui-group {
361
- position: absolute;
362
- display: block;
363
- background-color: rgba(80, 80, 80, 0.75);
364
- border-radius: 4px;
365
- border: 1px rgba(255, 255, 255, 0.25) solid;
366
- }
367
- .faust-ui-group > .faust-ui-group-label {
368
- position: relative;
369
- margin: 4px;
370
- width: calc(100% - 8px);
371
- user-select: none;
372
- }
373
- .faust-ui-group > .faust-ui-group-label > canvas {
374
- position: relative;
375
- display: block;
376
- max-width: 100%;
377
- max-height: 100%;
378
- }
379
- .faust-ui-group .faust-ui-tgroup-tabs {
380
- position: absolute;
381
- display: inline-block;
382
- white-space: nowrap;
383
- left: 0px;
384
- }
385
- .faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab {
386
- position: relative;
387
- display: inline-block;
388
- border-radius: 5px;
389
- cursor: pointer;
390
- text-overflow: ellipsis;
391
- white-space: nowrap;
392
- user-select: none;
393
- margin: 10px;
394
- text-align: center;
395
- background-color: rgba(255, 255, 255, 0.5);
396
- }
397
- .faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab:hover {
398
- background-color: rgb(255, 255, 255);
399
- }
400
- .faust-ui-group .faust-ui-tgroup-tabs .faust-ui-tgroup-tab.active {
401
- background-color: rgb(40, 40, 40);
402
- color: white;
403
- }
404
- /*!*********************************************************************************************************!*\
405
- !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
406
- \*********************************************************************************************************/
407
- .faust-ui-root {
408
- margin: 0px auto;
409
- flex: 1 0 auto;
410
- position: relative !important;
411
- background-color: transparent !important;
412
- border: none !important;
413
- 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";
414
- }
415
-
416
- /*# 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;AAIhB;AADQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAGZ;AAFY;EAEI;EACA;AAGhB,C;;;;AC1CI;EACI;AAAR;AAEI;EACI;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;EACA;EACA;EACA;AACZ;AAAY;EACI;EACA;EACA;EACA;AAEhB;AACQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACZ;AAAY;EAEI;EACA;AAChB,C;;;;ACxCA;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;AAAR;AACQ;EACI;EACA;AACZ,C;;;;ACbA;EACI;AACJ;AAAI;EACI;EACA;EACA;EACA;EACA;AAER;AAAI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAER;AADQ;EAEI;EACA;AAEZ,C;;;;AC1BA;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;AAER;AADQ;EACI;EACA;EACA;AAGZ,C;;;;ACnBA;EACI;AACJ;AAAI;EACI;AAER;AAAI;EACI;EACA;EACA;EACA;AAER;AADQ;EACI;EACA;EACA;EACA;AAGZ,C;;;;ACjBA;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;AAIhB;AADQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAGZ,C;;;;ACrCI;EACI;AAAR;AAEI;EACI;EACA;EACA;EACA;EACA;EACA;AAAR;AACQ;EACI;EACA;EACA;EACA;EACA;AACZ;AAAY;EACI;EACA;EACA;EACA;AAEhB;AACQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AACZ,C;;;;AClCA;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/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 }\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 }\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-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 & > 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 & > 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 }\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 0 auto;\n margin-bottom: auto;\n border-width: 1px;\n border-radius: 4px;\n padding: 2px 4px;\n width: calc(100% - 8px);\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 }\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 }\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 }\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";