juxscript 1.0.19 → 1.0.20
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/lib/components/alert.ts +124 -128
- package/lib/components/areachart.ts +169 -287
- package/lib/components/areachartsmooth.ts +2 -2
- package/lib/components/badge.ts +63 -72
- package/lib/components/barchart.ts +120 -48
- package/lib/components/button.ts +92 -60
- package/lib/components/card.ts +97 -121
- package/lib/components/chart-types.ts +159 -0
- package/lib/components/chart-utils.ts +160 -0
- package/lib/components/chart.ts +628 -48
- package/lib/components/checkbox.ts +137 -51
- package/lib/components/code.ts +89 -75
- package/lib/components/container.ts +1 -1
- package/lib/components/datepicker.ts +93 -78
- package/lib/components/dialog.ts +163 -130
- package/lib/components/divider.ts +111 -193
- package/lib/components/docs-data.json +697 -274
- package/lib/components/doughnutchart.ts +125 -57
- package/lib/components/dropdown.ts +172 -85
- package/lib/components/element.ts +66 -61
- package/lib/components/fileupload.ts +142 -171
- package/lib/components/heading.ts +64 -21
- package/lib/components/hero.ts +109 -34
- package/lib/components/icon.ts +247 -0
- package/lib/components/icons.ts +174 -0
- package/lib/components/include.ts +77 -2
- package/lib/components/input.ts +105 -53
- package/lib/components/list.ts +120 -79
- package/lib/components/menu.ts +97 -2
- package/lib/components/modal.ts +144 -63
- package/lib/components/nav.ts +153 -52
- package/lib/components/paragraph.ts +54 -91
- package/lib/components/progress.ts +83 -107
- package/lib/components/radio.ts +151 -52
- package/lib/components/select.ts +110 -102
- package/lib/components/sidebar.ts +148 -105
- package/lib/components/switch.ts +124 -125
- package/lib/components/table.ts +214 -137
- package/lib/components/tabs.ts +194 -113
- package/lib/components/theme-toggle.ts +38 -7
- package/lib/components/tooltip.ts +207 -47
- package/lib/jux.ts +24 -5
- package/package.json +1 -2
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
{
|
|
166
166
|
"name": "Chart",
|
|
167
167
|
"category": "Data Components",
|
|
168
|
-
"description": "Chart component
|
|
168
|
+
"description": "Chart component using Chart.js library",
|
|
169
169
|
"constructor": "jux.chart(id: string, options: ChartOptions = {})",
|
|
170
170
|
"fluentMethods": [
|
|
171
171
|
{
|
|
@@ -174,6 +174,12 @@
|
|
|
174
174
|
"returns": "this",
|
|
175
175
|
"description": "Set type"
|
|
176
176
|
},
|
|
177
|
+
{
|
|
178
|
+
"name": "changeType",
|
|
179
|
+
"params": "(value)",
|
|
180
|
+
"returns": "this",
|
|
181
|
+
"description": "Set changeType"
|
|
182
|
+
},
|
|
177
183
|
{
|
|
178
184
|
"name": "data",
|
|
179
185
|
"params": "(value)",
|
|
@@ -186,6 +192,144 @@
|
|
|
186
192
|
"returns": "this",
|
|
187
193
|
"description": "Set options"
|
|
188
194
|
},
|
|
195
|
+
{
|
|
196
|
+
"name": "width",
|
|
197
|
+
"params": "(value)",
|
|
198
|
+
"returns": "this",
|
|
199
|
+
"description": "Set width"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "height",
|
|
203
|
+
"params": "(value)",
|
|
204
|
+
"returns": "this",
|
|
205
|
+
"description": "Set height"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "style",
|
|
209
|
+
"params": "(value)",
|
|
210
|
+
"returns": "this",
|
|
211
|
+
"description": "Set style"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "class",
|
|
215
|
+
"params": "(value)",
|
|
216
|
+
"returns": "this",
|
|
217
|
+
"description": "Set class"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "title",
|
|
221
|
+
"params": "(value)",
|
|
222
|
+
"returns": "this",
|
|
223
|
+
"description": "Set title"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "subtitle",
|
|
227
|
+
"params": "(value)",
|
|
228
|
+
"returns": "this",
|
|
229
|
+
"description": "Set subtitle"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "xAxisLabel",
|
|
233
|
+
"params": "(value)",
|
|
234
|
+
"returns": "this",
|
|
235
|
+
"description": "Set xAxisLabel"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "yAxisLabel",
|
|
239
|
+
"params": "(value)",
|
|
240
|
+
"returns": "this",
|
|
241
|
+
"description": "Set yAxisLabel"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "theme",
|
|
245
|
+
"params": "(value)",
|
|
246
|
+
"returns": "this",
|
|
247
|
+
"description": "Set theme"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"name": "styleMode",
|
|
251
|
+
"params": "(value)",
|
|
252
|
+
"returns": "this",
|
|
253
|
+
"description": "Set styleMode"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "borderRadius",
|
|
257
|
+
"params": "(value)",
|
|
258
|
+
"returns": "this",
|
|
259
|
+
"description": "Set borderRadius"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "showTicksX",
|
|
263
|
+
"params": "(value)",
|
|
264
|
+
"returns": "this",
|
|
265
|
+
"description": "Set showTicksX"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "showTicksY",
|
|
269
|
+
"params": "(value)",
|
|
270
|
+
"returns": "this",
|
|
271
|
+
"description": "Set showTicksY"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "showDataLabels",
|
|
275
|
+
"params": "(value)",
|
|
276
|
+
"returns": "this",
|
|
277
|
+
"description": "Set showDataLabels"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"name": "showLegend",
|
|
281
|
+
"params": "(value)",
|
|
282
|
+
"returns": "this",
|
|
283
|
+
"description": "Set showLegend"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "showDataTable",
|
|
287
|
+
"params": "(value)",
|
|
288
|
+
"returns": "this",
|
|
289
|
+
"description": "Set showDataTable"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "legendOrientation",
|
|
293
|
+
"params": "(value)",
|
|
294
|
+
"returns": "this",
|
|
295
|
+
"description": "Set legendOrientation"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "animate",
|
|
299
|
+
"params": "(value)",
|
|
300
|
+
"returns": "this",
|
|
301
|
+
"description": "Set animate"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "animationDuration",
|
|
305
|
+
"params": "(value)",
|
|
306
|
+
"returns": "this",
|
|
307
|
+
"description": "Set animationDuration"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "chartOrientation",
|
|
311
|
+
"params": "(value)",
|
|
312
|
+
"returns": "this",
|
|
313
|
+
"description": "Set chartOrientation"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "chartDirection",
|
|
317
|
+
"params": "(value)",
|
|
318
|
+
"returns": "this",
|
|
319
|
+
"description": "Set chartDirection"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"name": "bind",
|
|
323
|
+
"params": "(event, handler)",
|
|
324
|
+
"returns": "this",
|
|
325
|
+
"description": "Set bind"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "sync",
|
|
329
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
330
|
+
"returns": "this",
|
|
331
|
+
"description": "Set sync"
|
|
332
|
+
},
|
|
189
333
|
{
|
|
190
334
|
"name": "render",
|
|
191
335
|
"params": "(targetId?)",
|
|
@@ -199,7 +343,23 @@
|
|
|
199
343
|
"description": "Set renderTo"
|
|
200
344
|
}
|
|
201
345
|
],
|
|
202
|
-
"example": "
|
|
346
|
+
"example": "jux.chart('id').render()"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "Chart-types",
|
|
350
|
+
"category": "Data Components",
|
|
351
|
+
"description": "Shared chart data point",
|
|
352
|
+
"constructor": "new Chart-types()",
|
|
353
|
+
"fluentMethods": [],
|
|
354
|
+
"example": "jux.chart-types('id').render()"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "Chart-utils",
|
|
358
|
+
"category": "Data Components",
|
|
359
|
+
"description": "Lighten a hex color by a percentage",
|
|
360
|
+
"constructor": "jux.chart-utils(color: string, percent: number)",
|
|
361
|
+
"fluentMethods": [],
|
|
362
|
+
"example": "jux.chart-utils('id').render()"
|
|
203
363
|
},
|
|
204
364
|
{
|
|
205
365
|
"name": "Data",
|
|
@@ -212,7 +372,7 @@
|
|
|
212
372
|
{
|
|
213
373
|
"name": "List",
|
|
214
374
|
"category": "Data Components",
|
|
215
|
-
"description": "List
|
|
375
|
+
"description": "List component",
|
|
216
376
|
"constructor": "jux.list(id: string, options: ListOptions = {})",
|
|
217
377
|
"fluentMethods": [
|
|
218
378
|
{
|
|
@@ -222,40 +382,40 @@
|
|
|
222
382
|
"description": "Set items"
|
|
223
383
|
},
|
|
224
384
|
{
|
|
225
|
-
"name": "
|
|
385
|
+
"name": "addItem",
|
|
226
386
|
"params": "(value)",
|
|
227
387
|
"returns": "this",
|
|
228
|
-
"description": "Set
|
|
388
|
+
"description": "Set addItem"
|
|
229
389
|
},
|
|
230
390
|
{
|
|
231
|
-
"name": "
|
|
391
|
+
"name": "ordered",
|
|
232
392
|
"params": "(value)",
|
|
233
393
|
"returns": "this",
|
|
234
|
-
"description": "Set
|
|
394
|
+
"description": "Set ordered"
|
|
235
395
|
},
|
|
236
396
|
{
|
|
237
|
-
"name": "
|
|
397
|
+
"name": "style",
|
|
238
398
|
"params": "(value)",
|
|
239
399
|
"returns": "this",
|
|
240
|
-
"description": "Set
|
|
400
|
+
"description": "Set style"
|
|
241
401
|
},
|
|
242
402
|
{
|
|
243
|
-
"name": "
|
|
403
|
+
"name": "class",
|
|
244
404
|
"params": "(value)",
|
|
245
405
|
"returns": "this",
|
|
246
|
-
"description": "Set
|
|
406
|
+
"description": "Set class"
|
|
247
407
|
},
|
|
248
408
|
{
|
|
249
|
-
"name": "
|
|
250
|
-
"params": "(
|
|
409
|
+
"name": "bind",
|
|
410
|
+
"params": "(event, handler)",
|
|
251
411
|
"returns": "this",
|
|
252
|
-
"description": "Set
|
|
412
|
+
"description": "Set bind"
|
|
253
413
|
},
|
|
254
414
|
{
|
|
255
|
-
"name": "
|
|
256
|
-
"params": "(
|
|
415
|
+
"name": "sync",
|
|
416
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
257
417
|
"returns": "this",
|
|
258
|
-
"description": "Set
|
|
418
|
+
"description": "Set sync"
|
|
259
419
|
},
|
|
260
420
|
{
|
|
261
421
|
"name": "add",
|
|
@@ -300,25 +460,25 @@
|
|
|
300
460
|
"description": "Set renderTo"
|
|
301
461
|
}
|
|
302
462
|
],
|
|
303
|
-
"example": "
|
|
463
|
+
"example": "jux.list('id').render()"
|
|
304
464
|
},
|
|
305
465
|
{
|
|
306
466
|
"name": "Table",
|
|
307
467
|
"category": "Data Components",
|
|
308
|
-
"description": "
|
|
468
|
+
"description": "Column definition",
|
|
309
469
|
"constructor": "jux.table(id: string, options: TableOptions = {})",
|
|
310
470
|
"fluentMethods": [
|
|
311
471
|
{
|
|
312
|
-
"name": "
|
|
472
|
+
"name": "rows",
|
|
313
473
|
"params": "(value)",
|
|
314
474
|
"returns": "this",
|
|
315
|
-
"description": "Set
|
|
475
|
+
"description": "Set rows"
|
|
316
476
|
},
|
|
317
477
|
{
|
|
318
|
-
"name": "
|
|
478
|
+
"name": "headers",
|
|
319
479
|
"params": "(value)",
|
|
320
480
|
"returns": "this",
|
|
321
|
-
"description": "Set
|
|
481
|
+
"description": "Set headers"
|
|
322
482
|
},
|
|
323
483
|
{
|
|
324
484
|
"name": "striped",
|
|
@@ -339,10 +499,10 @@
|
|
|
339
499
|
"description": "Set bordered"
|
|
340
500
|
},
|
|
341
501
|
{
|
|
342
|
-
"name": "
|
|
502
|
+
"name": "compact",
|
|
343
503
|
"params": "(value)",
|
|
344
504
|
"returns": "this",
|
|
345
|
-
"description": "Set
|
|
505
|
+
"description": "Set compact"
|
|
346
506
|
},
|
|
347
507
|
{
|
|
348
508
|
"name": "style",
|
|
@@ -356,6 +516,18 @@
|
|
|
356
516
|
"returns": "this",
|
|
357
517
|
"description": "Set class"
|
|
358
518
|
},
|
|
519
|
+
{
|
|
520
|
+
"name": "bind",
|
|
521
|
+
"params": "(event, handler)",
|
|
522
|
+
"returns": "this",
|
|
523
|
+
"description": "Set bind"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"name": "sync",
|
|
527
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
528
|
+
"returns": "this",
|
|
529
|
+
"description": "Set sync"
|
|
530
|
+
},
|
|
359
531
|
{
|
|
360
532
|
"name": "render",
|
|
361
533
|
"params": "(targetId?)",
|
|
@@ -369,12 +541,12 @@
|
|
|
369
541
|
"description": "Set renderTo"
|
|
370
542
|
}
|
|
371
543
|
],
|
|
372
|
-
"example": "
|
|
544
|
+
"example": "jux.table('users', {"
|
|
373
545
|
},
|
|
374
546
|
{
|
|
375
547
|
"name": "Alert",
|
|
376
548
|
"category": "UI Components",
|
|
377
|
-
"description": "Alert component
|
|
549
|
+
"description": "Alert component",
|
|
378
550
|
"constructor": "jux.alert(id: string, options: AlertOptions = {})",
|
|
379
551
|
"fluentMethods": [
|
|
380
552
|
{
|
|
@@ -384,16 +556,10 @@
|
|
|
384
556
|
"description": "Set message"
|
|
385
557
|
},
|
|
386
558
|
{
|
|
387
|
-
"name": "
|
|
388
|
-
"params": "(value)",
|
|
389
|
-
"returns": "this",
|
|
390
|
-
"description": "Set variant"
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"name": "title",
|
|
559
|
+
"name": "type",
|
|
394
560
|
"params": "(value)",
|
|
395
561
|
"returns": "this",
|
|
396
|
-
"description": "Set
|
|
562
|
+
"description": "Set type"
|
|
397
563
|
},
|
|
398
564
|
{
|
|
399
565
|
"name": "dismissible",
|
|
@@ -420,10 +586,28 @@
|
|
|
420
586
|
"description": "Set class"
|
|
421
587
|
},
|
|
422
588
|
{
|
|
423
|
-
"name": "
|
|
424
|
-
"params": "(
|
|
589
|
+
"name": "bind",
|
|
590
|
+
"params": "(event, handler)",
|
|
591
|
+
"returns": "this",
|
|
592
|
+
"description": "Set bind"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"name": "sync",
|
|
596
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
597
|
+
"returns": "this",
|
|
598
|
+
"description": "Set sync"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"name": "show",
|
|
602
|
+
"params": "()",
|
|
425
603
|
"returns": "this",
|
|
426
|
-
"description": "Set
|
|
604
|
+
"description": "Set show"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "hide",
|
|
608
|
+
"params": "()",
|
|
609
|
+
"returns": "this",
|
|
610
|
+
"description": "Set hide"
|
|
427
611
|
},
|
|
428
612
|
{
|
|
429
613
|
"name": "render",
|
|
@@ -438,32 +622,14 @@
|
|
|
438
622
|
"description": "Set renderTo"
|
|
439
623
|
}
|
|
440
624
|
],
|
|
441
|
-
"example": "jux.alert('
|
|
625
|
+
"example": "jux.alert('id').render()"
|
|
442
626
|
},
|
|
443
627
|
{
|
|
444
628
|
"name": "Areachart",
|
|
445
629
|
"category": "UI Components",
|
|
446
|
-
"description": "
|
|
447
|
-
"constructor": "jux.areachart(id: string, options:
|
|
630
|
+
"description": "Area chart component - Simple SVG-based area chart",
|
|
631
|
+
"constructor": "jux.areachart(id: string, options: BarAreaChartOptions = {})",
|
|
448
632
|
"fluentMethods": [
|
|
449
|
-
{
|
|
450
|
-
"name": "bindTheme",
|
|
451
|
-
"params": "(stateObj)",
|
|
452
|
-
"returns": "this",
|
|
453
|
-
"description": "Set bindTheme"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"name": "bindStyleMode",
|
|
457
|
-
"params": "(stateObj)",
|
|
458
|
-
"returns": "this",
|
|
459
|
-
"description": "Set bindStyleMode"
|
|
460
|
-
},
|
|
461
|
-
{
|
|
462
|
-
"name": "bindBorderRadius",
|
|
463
|
-
"params": "(stateObj)",
|
|
464
|
-
"returns": "this",
|
|
465
|
-
"description": "Set bindBorderRadius"
|
|
466
|
-
},
|
|
467
633
|
{
|
|
468
634
|
"name": "data",
|
|
469
635
|
"params": "(value)",
|
|
@@ -506,30 +672,6 @@
|
|
|
506
672
|
"returns": "this",
|
|
507
673
|
"description": "Set showTicksY"
|
|
508
674
|
},
|
|
509
|
-
{
|
|
510
|
-
"name": "showScaleX",
|
|
511
|
-
"params": "(value)",
|
|
512
|
-
"returns": "this",
|
|
513
|
-
"description": "Set showScaleX"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"name": "showScaleY",
|
|
517
|
-
"params": "(value)",
|
|
518
|
-
"returns": "this",
|
|
519
|
-
"description": "Set showScaleY"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"name": "scaleXUnit",
|
|
523
|
-
"params": "(value)",
|
|
524
|
-
"returns": "this",
|
|
525
|
-
"description": "Set scaleXUnit"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"name": "scaleYUnit",
|
|
529
|
-
"params": "(value)",
|
|
530
|
-
"returns": "this",
|
|
531
|
-
"description": "Set scaleYUnit"
|
|
532
|
-
},
|
|
533
675
|
{
|
|
534
676
|
"name": "showLegend",
|
|
535
677
|
"params": "(value)",
|
|
@@ -588,25 +730,7 @@
|
|
|
588
730
|
"name": "height",
|
|
589
731
|
"params": "(value)",
|
|
590
732
|
"returns": "this",
|
|
591
|
-
"description": "Set height"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"name": "colors",
|
|
595
|
-
"params": "(value)",
|
|
596
|
-
"returns": "this",
|
|
597
|
-
"description": "Set colors"
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"name": "class",
|
|
601
|
-
"params": "(value)",
|
|
602
|
-
"returns": "this",
|
|
603
|
-
"description": "Set class"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"name": "style",
|
|
607
|
-
"params": "(value)",
|
|
608
|
-
"returns": "this",
|
|
609
|
-
"description": "Set style"
|
|
733
|
+
"description": "Set height"
|
|
610
734
|
},
|
|
611
735
|
{
|
|
612
736
|
"name": "theme",
|
|
@@ -626,6 +750,18 @@
|
|
|
626
750
|
"returns": "this",
|
|
627
751
|
"description": "Set borderRadius"
|
|
628
752
|
},
|
|
753
|
+
{
|
|
754
|
+
"name": "sync",
|
|
755
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
756
|
+
"returns": "this",
|
|
757
|
+
"description": "Set sync"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "syncState",
|
|
761
|
+
"params": "(stateObject, mapping?)",
|
|
762
|
+
"returns": "this",
|
|
763
|
+
"description": "Set syncState"
|
|
764
|
+
},
|
|
629
765
|
{
|
|
630
766
|
"name": "render",
|
|
631
767
|
"params": "(targetId?)",
|
|
@@ -633,7 +769,7 @@
|
|
|
633
769
|
"description": "Set render"
|
|
634
770
|
}
|
|
635
771
|
],
|
|
636
|
-
"example": "jux.areachart('
|
|
772
|
+
"example": "jux.areachart('id').render()"
|
|
637
773
|
},
|
|
638
774
|
{
|
|
639
775
|
"name": "Areachartsmooth",
|
|
@@ -833,7 +969,7 @@
|
|
|
833
969
|
{
|
|
834
970
|
"name": "Badge",
|
|
835
971
|
"category": "UI Components",
|
|
836
|
-
"description": "Badge component
|
|
972
|
+
"description": "Badge component",
|
|
837
973
|
"constructor": "jux.badge(id: string, options: BadgeOptions = {})",
|
|
838
974
|
"fluentMethods": [
|
|
839
975
|
{
|
|
@@ -854,12 +990,6 @@
|
|
|
854
990
|
"returns": "this",
|
|
855
991
|
"description": "Set size"
|
|
856
992
|
},
|
|
857
|
-
{
|
|
858
|
-
"name": "pill",
|
|
859
|
-
"params": "(value)",
|
|
860
|
-
"returns": "this",
|
|
861
|
-
"description": "Set pill"
|
|
862
|
-
},
|
|
863
993
|
{
|
|
864
994
|
"name": "style",
|
|
865
995
|
"params": "(value)",
|
|
@@ -872,6 +1002,18 @@
|
|
|
872
1002
|
"returns": "this",
|
|
873
1003
|
"description": "Set class"
|
|
874
1004
|
},
|
|
1005
|
+
{
|
|
1006
|
+
"name": "bind",
|
|
1007
|
+
"params": "(event, handler)",
|
|
1008
|
+
"returns": "this",
|
|
1009
|
+
"description": "Set bind"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"name": "sync",
|
|
1013
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1014
|
+
"returns": "this",
|
|
1015
|
+
"description": "Set sync"
|
|
1016
|
+
},
|
|
875
1017
|
{
|
|
876
1018
|
"name": "render",
|
|
877
1019
|
"params": "(targetId?)",
|
|
@@ -885,7 +1027,7 @@
|
|
|
885
1027
|
"description": "Set renderTo"
|
|
886
1028
|
}
|
|
887
1029
|
],
|
|
888
|
-
"example": "jux.badge('
|
|
1030
|
+
"example": "jux.badge('id').render()"
|
|
889
1031
|
},
|
|
890
1032
|
{
|
|
891
1033
|
"name": "Barchart",
|
|
@@ -1073,6 +1215,18 @@
|
|
|
1073
1215
|
"returns": "this",
|
|
1074
1216
|
"description": "Set borderRadius"
|
|
1075
1217
|
},
|
|
1218
|
+
{
|
|
1219
|
+
"name": "sync",
|
|
1220
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1221
|
+
"returns": "this",
|
|
1222
|
+
"description": "Set sync"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"name": "syncState",
|
|
1226
|
+
"params": "(stateObject, mapping?)",
|
|
1227
|
+
"returns": "this",
|
|
1228
|
+
"description": "Set syncState"
|
|
1229
|
+
},
|
|
1076
1230
|
{
|
|
1077
1231
|
"name": "render",
|
|
1078
1232
|
"params": "(targetId?)",
|
|
@@ -1100,12 +1254,6 @@
|
|
|
1100
1254
|
"returns": "this",
|
|
1101
1255
|
"description": "Set icon"
|
|
1102
1256
|
},
|
|
1103
|
-
{
|
|
1104
|
-
"name": "bind",
|
|
1105
|
-
"params": "(event, handler)",
|
|
1106
|
-
"returns": "this",
|
|
1107
|
-
"description": "Set bind"
|
|
1108
|
-
},
|
|
1109
1257
|
{
|
|
1110
1258
|
"name": "variant",
|
|
1111
1259
|
"params": "(value)",
|
|
@@ -1160,6 +1308,18 @@
|
|
|
1160
1308
|
"returns": "this",
|
|
1161
1309
|
"description": "Set class"
|
|
1162
1310
|
},
|
|
1311
|
+
{
|
|
1312
|
+
"name": "bind",
|
|
1313
|
+
"params": "(event, handler)",
|
|
1314
|
+
"returns": "this",
|
|
1315
|
+
"description": "Set bind"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"name": "sync",
|
|
1319
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1320
|
+
"returns": "this",
|
|
1321
|
+
"description": "Set sync"
|
|
1322
|
+
},
|
|
1163
1323
|
{
|
|
1164
1324
|
"name": "render",
|
|
1165
1325
|
"params": "(targetId?)",
|
|
@@ -1178,7 +1338,7 @@
|
|
|
1178
1338
|
{
|
|
1179
1339
|
"name": "Card",
|
|
1180
1340
|
"category": "UI Components",
|
|
1181
|
-
"description": "Card component
|
|
1341
|
+
"description": "Card component",
|
|
1182
1342
|
"constructor": "jux.card(id: string, options: CardOptions = {})",
|
|
1183
1343
|
"fluentMethods": [
|
|
1184
1344
|
{
|
|
@@ -1187,12 +1347,6 @@
|
|
|
1187
1347
|
"returns": "this",
|
|
1188
1348
|
"description": "Set title"
|
|
1189
1349
|
},
|
|
1190
|
-
{
|
|
1191
|
-
"name": "subtitle",
|
|
1192
|
-
"params": "(value)",
|
|
1193
|
-
"returns": "this",
|
|
1194
|
-
"description": "Set subtitle"
|
|
1195
|
-
},
|
|
1196
1350
|
{
|
|
1197
1351
|
"name": "content",
|
|
1198
1352
|
"params": "(value)",
|
|
@@ -1200,16 +1354,10 @@
|
|
|
1200
1354
|
"description": "Set content"
|
|
1201
1355
|
},
|
|
1202
1356
|
{
|
|
1203
|
-
"name": "
|
|
1204
|
-
"params": "(value)",
|
|
1205
|
-
"returns": "this",
|
|
1206
|
-
"description": "Set image"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"name": "variant",
|
|
1357
|
+
"name": "footer",
|
|
1210
1358
|
"params": "(value)",
|
|
1211
1359
|
"returns": "this",
|
|
1212
|
-
"description": "Set
|
|
1360
|
+
"description": "Set footer"
|
|
1213
1361
|
},
|
|
1214
1362
|
{
|
|
1215
1363
|
"name": "style",
|
|
@@ -1224,10 +1372,16 @@
|
|
|
1224
1372
|
"description": "Set class"
|
|
1225
1373
|
},
|
|
1226
1374
|
{
|
|
1227
|
-
"name": "
|
|
1228
|
-
"params": "()",
|
|
1375
|
+
"name": "bind",
|
|
1376
|
+
"params": "(event, handler)",
|
|
1377
|
+
"returns": "this",
|
|
1378
|
+
"description": "Set bind"
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"name": "sync",
|
|
1382
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1229
1383
|
"returns": "this",
|
|
1230
|
-
"description": "Set
|
|
1384
|
+
"description": "Set sync"
|
|
1231
1385
|
},
|
|
1232
1386
|
{
|
|
1233
1387
|
"name": "render",
|
|
@@ -1242,12 +1396,12 @@
|
|
|
1242
1396
|
"description": "Set renderTo"
|
|
1243
1397
|
}
|
|
1244
1398
|
],
|
|
1245
|
-
"example": "
|
|
1399
|
+
"example": "jux.card('id').render()"
|
|
1246
1400
|
},
|
|
1247
1401
|
{
|
|
1248
1402
|
"name": "Checkbox",
|
|
1249
1403
|
"category": "UI Components",
|
|
1250
|
-
"description": "
|
|
1404
|
+
"description": "Checkbox component",
|
|
1251
1405
|
"constructor": "jux.checkbox(id: string, options: CheckboxOptions = {})",
|
|
1252
1406
|
"fluentMethods": [
|
|
1253
1407
|
{
|
|
@@ -1294,10 +1448,22 @@
|
|
|
1294
1448
|
},
|
|
1295
1449
|
{
|
|
1296
1450
|
"name": "bind",
|
|
1297
|
-
"params": "(
|
|
1451
|
+
"params": "(event, handler)",
|
|
1298
1452
|
"returns": "this",
|
|
1299
1453
|
"description": "Set bind"
|
|
1300
1454
|
},
|
|
1455
|
+
{
|
|
1456
|
+
"name": "sync",
|
|
1457
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1458
|
+
"returns": "this",
|
|
1459
|
+
"description": "Set sync"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"name": "toggle",
|
|
1463
|
+
"params": "()",
|
|
1464
|
+
"returns": "this",
|
|
1465
|
+
"description": "Set toggle"
|
|
1466
|
+
},
|
|
1301
1467
|
{
|
|
1302
1468
|
"name": "render",
|
|
1303
1469
|
"params": "(targetId?)",
|
|
@@ -1311,13 +1477,13 @@
|
|
|
1311
1477
|
"description": "Set renderTo"
|
|
1312
1478
|
}
|
|
1313
1479
|
],
|
|
1314
|
-
"example": "jux.checkbox('
|
|
1480
|
+
"example": "jux.checkbox('terms', {"
|
|
1315
1481
|
},
|
|
1316
1482
|
{
|
|
1317
1483
|
"name": "Code",
|
|
1318
1484
|
"category": "UI Components",
|
|
1319
|
-
"description": "Code component
|
|
1320
|
-
"constructor": "jux.code(id: string,
|
|
1485
|
+
"description": "Code component",
|
|
1486
|
+
"constructor": "jux.code(id: string, options: CodeOptions = {})",
|
|
1321
1487
|
"fluentMethods": [
|
|
1322
1488
|
{
|
|
1323
1489
|
"name": "code",
|
|
@@ -1332,28 +1498,28 @@
|
|
|
1332
1498
|
"description": "Set language"
|
|
1333
1499
|
},
|
|
1334
1500
|
{
|
|
1335
|
-
"name": "
|
|
1501
|
+
"name": "style",
|
|
1336
1502
|
"params": "(value)",
|
|
1337
1503
|
"returns": "this",
|
|
1338
|
-
"description": "Set
|
|
1504
|
+
"description": "Set style"
|
|
1339
1505
|
},
|
|
1340
1506
|
{
|
|
1341
|
-
"name": "
|
|
1507
|
+
"name": "class",
|
|
1342
1508
|
"params": "(value)",
|
|
1343
1509
|
"returns": "this",
|
|
1344
|
-
"description": "Set
|
|
1510
|
+
"description": "Set class"
|
|
1345
1511
|
},
|
|
1346
1512
|
{
|
|
1347
|
-
"name": "
|
|
1348
|
-
"params": "(
|
|
1513
|
+
"name": "bind",
|
|
1514
|
+
"params": "(event, handler)",
|
|
1349
1515
|
"returns": "this",
|
|
1350
|
-
"description": "Set
|
|
1516
|
+
"description": "Set bind"
|
|
1351
1517
|
},
|
|
1352
1518
|
{
|
|
1353
|
-
"name": "
|
|
1354
|
-
"params": "(
|
|
1519
|
+
"name": "sync",
|
|
1520
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1355
1521
|
"returns": "this",
|
|
1356
|
-
"description": "Set
|
|
1522
|
+
"description": "Set sync"
|
|
1357
1523
|
},
|
|
1358
1524
|
{
|
|
1359
1525
|
"name": "render",
|
|
@@ -1368,7 +1534,7 @@
|
|
|
1368
1534
|
"description": "Set renderTo"
|
|
1369
1535
|
}
|
|
1370
1536
|
],
|
|
1371
|
-
"example": "
|
|
1537
|
+
"example": "jux.code('id').render()"
|
|
1372
1538
|
},
|
|
1373
1539
|
{
|
|
1374
1540
|
"name": "Container",
|
|
@@ -1424,7 +1590,7 @@
|
|
|
1424
1590
|
{
|
|
1425
1591
|
"name": "Datepicker",
|
|
1426
1592
|
"category": "UI Components",
|
|
1427
|
-
"description": "
|
|
1593
|
+
"description": "Datepicker component",
|
|
1428
1594
|
"constructor": "jux.datepicker(id: string, options: DatePickerOptions = {})",
|
|
1429
1595
|
"fluentMethods": [
|
|
1430
1596
|
{
|
|
@@ -1434,16 +1600,10 @@
|
|
|
1434
1600
|
"description": "Set value"
|
|
1435
1601
|
},
|
|
1436
1602
|
{
|
|
1437
|
-
"name": "
|
|
1438
|
-
"params": "(value)",
|
|
1439
|
-
"returns": "this",
|
|
1440
|
-
"description": "Set min"
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"name": "max",
|
|
1603
|
+
"name": "label",
|
|
1444
1604
|
"params": "(value)",
|
|
1445
1605
|
"returns": "this",
|
|
1446
|
-
"description": "Set
|
|
1606
|
+
"description": "Set label"
|
|
1447
1607
|
},
|
|
1448
1608
|
{
|
|
1449
1609
|
"name": "placeholder",
|
|
@@ -1458,10 +1618,16 @@
|
|
|
1458
1618
|
"description": "Set disabled"
|
|
1459
1619
|
},
|
|
1460
1620
|
{
|
|
1461
|
-
"name": "
|
|
1621
|
+
"name": "min",
|
|
1462
1622
|
"params": "(value)",
|
|
1463
1623
|
"returns": "this",
|
|
1464
|
-
"description": "Set
|
|
1624
|
+
"description": "Set min"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"name": "max",
|
|
1628
|
+
"params": "(value)",
|
|
1629
|
+
"returns": "this",
|
|
1630
|
+
"description": "Set max"
|
|
1465
1631
|
},
|
|
1466
1632
|
{
|
|
1467
1633
|
"name": "style",
|
|
@@ -1477,10 +1643,16 @@
|
|
|
1477
1643
|
},
|
|
1478
1644
|
{
|
|
1479
1645
|
"name": "bind",
|
|
1480
|
-
"params": "(
|
|
1646
|
+
"params": "(event, handler)",
|
|
1481
1647
|
"returns": "this",
|
|
1482
1648
|
"description": "Set bind"
|
|
1483
1649
|
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "sync",
|
|
1652
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1653
|
+
"returns": "this",
|
|
1654
|
+
"description": "Set sync"
|
|
1655
|
+
},
|
|
1484
1656
|
{
|
|
1485
1657
|
"name": "render",
|
|
1486
1658
|
"params": "(targetId?)",
|
|
@@ -1494,12 +1666,12 @@
|
|
|
1494
1666
|
"description": "Set renderTo"
|
|
1495
1667
|
}
|
|
1496
1668
|
],
|
|
1497
|
-
"example": "jux.datepicker('
|
|
1669
|
+
"example": "jux.datepicker('id').render()"
|
|
1498
1670
|
},
|
|
1499
1671
|
{
|
|
1500
1672
|
"name": "Dialog",
|
|
1501
1673
|
"category": "UI Components",
|
|
1502
|
-
"description": "Dialog component
|
|
1674
|
+
"description": "Dialog component",
|
|
1503
1675
|
"constructor": "jux.dialog(id: string, options: DialogOptions = {})",
|
|
1504
1676
|
"fluentMethods": [
|
|
1505
1677
|
{
|
|
@@ -1509,28 +1681,28 @@
|
|
|
1509
1681
|
"description": "Set title"
|
|
1510
1682
|
},
|
|
1511
1683
|
{
|
|
1512
|
-
"name": "
|
|
1684
|
+
"name": "content",
|
|
1513
1685
|
"params": "(value)",
|
|
1514
1686
|
"returns": "this",
|
|
1515
|
-
"description": "Set
|
|
1687
|
+
"description": "Set content"
|
|
1516
1688
|
},
|
|
1517
1689
|
{
|
|
1518
|
-
"name": "
|
|
1690
|
+
"name": "showClose",
|
|
1519
1691
|
"params": "(value)",
|
|
1520
1692
|
"returns": "this",
|
|
1521
|
-
"description": "Set
|
|
1693
|
+
"description": "Set showClose"
|
|
1522
1694
|
},
|
|
1523
1695
|
{
|
|
1524
|
-
"name": "
|
|
1696
|
+
"name": "modal",
|
|
1525
1697
|
"params": "(value)",
|
|
1526
1698
|
"returns": "this",
|
|
1527
|
-
"description": "Set
|
|
1699
|
+
"description": "Set modal"
|
|
1528
1700
|
},
|
|
1529
1701
|
{
|
|
1530
|
-
"name": "
|
|
1702
|
+
"name": "width",
|
|
1531
1703
|
"params": "(value)",
|
|
1532
1704
|
"returns": "this",
|
|
1533
|
-
"description": "Set
|
|
1705
|
+
"description": "Set width"
|
|
1534
1706
|
},
|
|
1535
1707
|
{
|
|
1536
1708
|
"name": "style",
|
|
@@ -1544,6 +1716,18 @@
|
|
|
1544
1716
|
"returns": "this",
|
|
1545
1717
|
"description": "Set class"
|
|
1546
1718
|
},
|
|
1719
|
+
{
|
|
1720
|
+
"name": "bind",
|
|
1721
|
+
"params": "(event, handler)",
|
|
1722
|
+
"returns": "this",
|
|
1723
|
+
"description": "Set bind"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"name": "sync",
|
|
1727
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1728
|
+
"returns": "this",
|
|
1729
|
+
"description": "Set sync"
|
|
1730
|
+
},
|
|
1547
1731
|
{
|
|
1548
1732
|
"name": "render",
|
|
1549
1733
|
"params": "(targetId?)",
|
|
@@ -1557,37 +1741,25 @@
|
|
|
1557
1741
|
"description": "Set renderTo"
|
|
1558
1742
|
}
|
|
1559
1743
|
],
|
|
1560
|
-
"example": "jux.dialog('
|
|
1744
|
+
"example": "jux.dialog('id').render()"
|
|
1561
1745
|
},
|
|
1562
1746
|
{
|
|
1563
1747
|
"name": "Divider",
|
|
1564
1748
|
"category": "UI Components",
|
|
1565
|
-
"description": "Divider
|
|
1566
|
-
"constructor": "jux.divider(options: DividerOptions = {})",
|
|
1749
|
+
"description": "Divider component",
|
|
1750
|
+
"constructor": "jux.divider(id: string, options: DividerOptions = {})",
|
|
1567
1751
|
"fluentMethods": [
|
|
1568
1752
|
{
|
|
1569
|
-
"name": "
|
|
1570
|
-
"params": "(value)",
|
|
1571
|
-
"returns": "this",
|
|
1572
|
-
"description": "Set orientation"
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"name": "thickness",
|
|
1576
|
-
"params": "(value)",
|
|
1577
|
-
"returns": "this",
|
|
1578
|
-
"description": "Set thickness"
|
|
1579
|
-
},
|
|
1580
|
-
{
|
|
1581
|
-
"name": "color",
|
|
1753
|
+
"name": "text",
|
|
1582
1754
|
"params": "(value)",
|
|
1583
1755
|
"returns": "this",
|
|
1584
|
-
"description": "Set
|
|
1756
|
+
"description": "Set text"
|
|
1585
1757
|
},
|
|
1586
1758
|
{
|
|
1587
|
-
"name": "
|
|
1759
|
+
"name": "orientation",
|
|
1588
1760
|
"params": "(value)",
|
|
1589
1761
|
"returns": "this",
|
|
1590
|
-
"description": "Set
|
|
1762
|
+
"description": "Set orientation"
|
|
1591
1763
|
},
|
|
1592
1764
|
{
|
|
1593
1765
|
"name": "style",
|
|
@@ -1596,37 +1768,37 @@
|
|
|
1596
1768
|
"description": "Set style"
|
|
1597
1769
|
},
|
|
1598
1770
|
{
|
|
1599
|
-
"name": "
|
|
1771
|
+
"name": "class",
|
|
1600
1772
|
"params": "(value)",
|
|
1601
1773
|
"returns": "this",
|
|
1602
|
-
"description": "Set
|
|
1774
|
+
"description": "Set class"
|
|
1603
1775
|
},
|
|
1604
1776
|
{
|
|
1605
|
-
"name": "
|
|
1606
|
-
"params": "(
|
|
1777
|
+
"name": "bind",
|
|
1778
|
+
"params": "(event, handler)",
|
|
1607
1779
|
"returns": "this",
|
|
1608
|
-
"description": "Set
|
|
1780
|
+
"description": "Set bind"
|
|
1609
1781
|
},
|
|
1610
1782
|
{
|
|
1611
|
-
"name": "
|
|
1612
|
-
"params": "(
|
|
1783
|
+
"name": "sync",
|
|
1784
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1613
1785
|
"returns": "this",
|
|
1614
|
-
"description": "Set
|
|
1786
|
+
"description": "Set sync"
|
|
1615
1787
|
},
|
|
1616
1788
|
{
|
|
1617
|
-
"name": "
|
|
1618
|
-
"params": "(
|
|
1789
|
+
"name": "render",
|
|
1790
|
+
"params": "(targetId?)",
|
|
1619
1791
|
"returns": "this",
|
|
1620
|
-
"description": "Set
|
|
1792
|
+
"description": "Set render"
|
|
1621
1793
|
},
|
|
1622
1794
|
{
|
|
1623
|
-
"name": "
|
|
1624
|
-
"params": "(
|
|
1795
|
+
"name": "renderTo",
|
|
1796
|
+
"params": "(juxComponent)",
|
|
1625
1797
|
"returns": "this",
|
|
1626
|
-
"description": "Set
|
|
1798
|
+
"description": "Set renderTo"
|
|
1627
1799
|
}
|
|
1628
1800
|
],
|
|
1629
|
-
"example": "
|
|
1801
|
+
"example": "jux.divider('id').render()"
|
|
1630
1802
|
},
|
|
1631
1803
|
{
|
|
1632
1804
|
"name": "Doughnutchart",
|
|
@@ -1814,6 +1986,18 @@
|
|
|
1814
1986
|
"returns": "this",
|
|
1815
1987
|
"description": "Set borderRadius"
|
|
1816
1988
|
},
|
|
1989
|
+
{
|
|
1990
|
+
"name": "sync",
|
|
1991
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1992
|
+
"returns": "this",
|
|
1993
|
+
"description": "Set sync"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "syncState",
|
|
1997
|
+
"params": "(stateObject, mapping?)",
|
|
1998
|
+
"returns": "this",
|
|
1999
|
+
"description": "Set syncState"
|
|
2000
|
+
},
|
|
1817
2001
|
{
|
|
1818
2002
|
"name": "render",
|
|
1819
2003
|
"params": "(targetId?)",
|
|
@@ -1826,7 +2010,7 @@
|
|
|
1826
2010
|
{
|
|
1827
2011
|
"name": "Dropdown",
|
|
1828
2012
|
"category": "UI Components",
|
|
1829
|
-
"description": "Dropdown
|
|
2013
|
+
"description": "Dropdown component",
|
|
1830
2014
|
"constructor": "jux.dropdown(id: string, options: DropdownOptions = {})",
|
|
1831
2015
|
"fluentMethods": [
|
|
1832
2016
|
{
|
|
@@ -1865,6 +2049,18 @@
|
|
|
1865
2049
|
"returns": "this",
|
|
1866
2050
|
"description": "Set class"
|
|
1867
2051
|
},
|
|
2052
|
+
{
|
|
2053
|
+
"name": "bind",
|
|
2054
|
+
"params": "(event, handler)",
|
|
2055
|
+
"returns": "this",
|
|
2056
|
+
"description": "Set bind"
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"name": "sync",
|
|
2060
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2061
|
+
"returns": "this",
|
|
2062
|
+
"description": "Set sync"
|
|
2063
|
+
},
|
|
1868
2064
|
{
|
|
1869
2065
|
"name": "render",
|
|
1870
2066
|
"params": "(targetId?)",
|
|
@@ -1878,12 +2074,12 @@
|
|
|
1878
2074
|
"description": "Set renderTo"
|
|
1879
2075
|
}
|
|
1880
2076
|
],
|
|
1881
|
-
"example": "jux.dropdown('
|
|
2077
|
+
"example": "jux.dropdown('id').render()"
|
|
1882
2078
|
},
|
|
1883
2079
|
{
|
|
1884
2080
|
"name": "Element",
|
|
1885
2081
|
"category": "UI Components",
|
|
1886
|
-
"description": "
|
|
2082
|
+
"description": "Set the HTML tag type",
|
|
1887
2083
|
"constructor": "jux.element(id: string, options: ElementOptions = {})",
|
|
1888
2084
|
"fluentMethods": [
|
|
1889
2085
|
{
|
|
@@ -1893,31 +2089,31 @@
|
|
|
1893
2089
|
"description": "Render component to DOM"
|
|
1894
2090
|
}
|
|
1895
2091
|
],
|
|
1896
|
-
"example": "const
|
|
2092
|
+
"example": "const container = jux.element('myContainer');"
|
|
1897
2093
|
},
|
|
1898
2094
|
{
|
|
1899
2095
|
"name": "Fileupload",
|
|
1900
2096
|
"category": "UI Components",
|
|
1901
|
-
"description": "
|
|
2097
|
+
"description": "Fileupload component",
|
|
1902
2098
|
"constructor": "jux.fileupload(id: string, options: FileUploadOptions = {})",
|
|
1903
2099
|
"fluentMethods": [
|
|
1904
2100
|
{
|
|
1905
|
-
"name": "
|
|
2101
|
+
"name": "label",
|
|
1906
2102
|
"params": "(value)",
|
|
1907
2103
|
"returns": "this",
|
|
1908
|
-
"description": "Set
|
|
2104
|
+
"description": "Set label"
|
|
1909
2105
|
},
|
|
1910
2106
|
{
|
|
1911
|
-
"name": "
|
|
2107
|
+
"name": "accept",
|
|
1912
2108
|
"params": "(value)",
|
|
1913
2109
|
"returns": "this",
|
|
1914
|
-
"description": "Set
|
|
2110
|
+
"description": "Set accept"
|
|
1915
2111
|
},
|
|
1916
2112
|
{
|
|
1917
|
-
"name": "
|
|
2113
|
+
"name": "multiple",
|
|
1918
2114
|
"params": "(value)",
|
|
1919
2115
|
"returns": "this",
|
|
1920
|
-
"description": "Set
|
|
2116
|
+
"description": "Set multiple"
|
|
1921
2117
|
},
|
|
1922
2118
|
{
|
|
1923
2119
|
"name": "disabled",
|
|
@@ -1926,16 +2122,10 @@
|
|
|
1926
2122
|
"description": "Set disabled"
|
|
1927
2123
|
},
|
|
1928
2124
|
{
|
|
1929
|
-
"name": "
|
|
1930
|
-
"params": "(value)",
|
|
1931
|
-
"returns": "this",
|
|
1932
|
-
"description": "Set text"
|
|
1933
|
-
},
|
|
1934
|
-
{
|
|
1935
|
-
"name": "dragText",
|
|
2125
|
+
"name": "name",
|
|
1936
2126
|
"params": "(value)",
|
|
1937
2127
|
"returns": "this",
|
|
1938
|
-
"description": "Set
|
|
2128
|
+
"description": "Set name"
|
|
1939
2129
|
},
|
|
1940
2130
|
{
|
|
1941
2131
|
"name": "style",
|
|
@@ -1949,6 +2139,18 @@
|
|
|
1949
2139
|
"returns": "this",
|
|
1950
2140
|
"description": "Set class"
|
|
1951
2141
|
},
|
|
2142
|
+
{
|
|
2143
|
+
"name": "bind",
|
|
2144
|
+
"params": "(event, handler)",
|
|
2145
|
+
"returns": "this",
|
|
2146
|
+
"description": "Set bind"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"name": "sync",
|
|
2150
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2151
|
+
"returns": "this",
|
|
2152
|
+
"description": "Set sync"
|
|
2153
|
+
},
|
|
1952
2154
|
{
|
|
1953
2155
|
"name": "render",
|
|
1954
2156
|
"params": "(targetId?)",
|
|
@@ -1962,7 +2164,7 @@
|
|
|
1962
2164
|
"description": "Set renderTo"
|
|
1963
2165
|
}
|
|
1964
2166
|
],
|
|
1965
|
-
"example": "jux.fileupload('
|
|
2167
|
+
"example": "jux.fileupload('id').render()"
|
|
1966
2168
|
},
|
|
1967
2169
|
{
|
|
1968
2170
|
"name": "Footer",
|
|
@@ -2094,19 +2296,37 @@
|
|
|
2094
2296
|
"name": "class",
|
|
2095
2297
|
"params": "(value)",
|
|
2096
2298
|
"returns": "this",
|
|
2097
|
-
"description": "Set class"
|
|
2299
|
+
"description": "Set class"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"name": "style",
|
|
2303
|
+
"params": "(value)",
|
|
2304
|
+
"returns": "this",
|
|
2305
|
+
"description": "Set style"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"name": "bind",
|
|
2309
|
+
"params": "(event, handler)",
|
|
2310
|
+
"returns": "this",
|
|
2311
|
+
"description": "Set bind"
|
|
2098
2312
|
},
|
|
2099
2313
|
{
|
|
2100
|
-
"name": "
|
|
2101
|
-
"params": "(
|
|
2314
|
+
"name": "sync",
|
|
2315
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2102
2316
|
"returns": "this",
|
|
2103
|
-
"description": "Set
|
|
2317
|
+
"description": "Set sync"
|
|
2104
2318
|
},
|
|
2105
2319
|
{
|
|
2106
2320
|
"name": "render",
|
|
2107
2321
|
"params": "(targetId?)",
|
|
2108
2322
|
"returns": "this",
|
|
2109
2323
|
"description": "Set render"
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"name": "renderTo",
|
|
2327
|
+
"params": "(juxComponent)",
|
|
2328
|
+
"returns": "this",
|
|
2329
|
+
"description": "Set renderTo"
|
|
2110
2330
|
}
|
|
2111
2331
|
],
|
|
2112
2332
|
"example": "jux.heading('title', { level: 1, text: 'Welcome' }).render('#app');"
|
|
@@ -2173,6 +2393,18 @@
|
|
|
2173
2393
|
"returns": "this",
|
|
2174
2394
|
"description": "Set class"
|
|
2175
2395
|
},
|
|
2396
|
+
{
|
|
2397
|
+
"name": "bind",
|
|
2398
|
+
"params": "(event, handler)",
|
|
2399
|
+
"returns": "this",
|
|
2400
|
+
"description": "Set bind"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"name": "sync",
|
|
2404
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2405
|
+
"returns": "this",
|
|
2406
|
+
"description": "Set sync"
|
|
2407
|
+
},
|
|
2176
2408
|
{
|
|
2177
2409
|
"name": "render",
|
|
2178
2410
|
"params": "(targetId?)",
|
|
@@ -2188,6 +2420,83 @@
|
|
|
2188
2420
|
],
|
|
2189
2421
|
"example": "const hero = jux.hero('myHero', {"
|
|
2190
2422
|
},
|
|
2423
|
+
{
|
|
2424
|
+
"name": "Icon",
|
|
2425
|
+
"category": "UI Components",
|
|
2426
|
+
"description": "Icon component options",
|
|
2427
|
+
"constructor": "jux.icon(id: string, options: IconOptions)",
|
|
2428
|
+
"fluentMethods": [
|
|
2429
|
+
{
|
|
2430
|
+
"name": "value",
|
|
2431
|
+
"params": "(value)",
|
|
2432
|
+
"returns": "this",
|
|
2433
|
+
"description": "Set value"
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
"name": "size",
|
|
2437
|
+
"params": "(value)",
|
|
2438
|
+
"returns": "this",
|
|
2439
|
+
"description": "Set size"
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"name": "color",
|
|
2443
|
+
"params": "(value)",
|
|
2444
|
+
"returns": "this",
|
|
2445
|
+
"description": "Set color"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"name": "useEmoji",
|
|
2449
|
+
"params": "(value)",
|
|
2450
|
+
"returns": "this",
|
|
2451
|
+
"description": "Set useEmoji"
|
|
2452
|
+
},
|
|
2453
|
+
{
|
|
2454
|
+
"name": "style",
|
|
2455
|
+
"params": "(value)",
|
|
2456
|
+
"returns": "this",
|
|
2457
|
+
"description": "Set style"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"name": "class",
|
|
2461
|
+
"params": "(value)",
|
|
2462
|
+
"returns": "this",
|
|
2463
|
+
"description": "Set class"
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"name": "bind",
|
|
2467
|
+
"params": "(event, handler)",
|
|
2468
|
+
"returns": "this",
|
|
2469
|
+
"description": "Set bind"
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
"name": "sync",
|
|
2473
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2474
|
+
"returns": "this",
|
|
2475
|
+
"description": "Set sync"
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"name": "render",
|
|
2479
|
+
"params": "(targetId?)",
|
|
2480
|
+
"returns": "this",
|
|
2481
|
+
"description": "Set render"
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
"name": "renderTo",
|
|
2485
|
+
"params": "(juxComponent)",
|
|
2486
|
+
"returns": "this",
|
|
2487
|
+
"description": "Set renderTo"
|
|
2488
|
+
}
|
|
2489
|
+
],
|
|
2490
|
+
"example": "// Render Lucide icon from emoji"
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
"name": "Icons",
|
|
2494
|
+
"category": "UI Components",
|
|
2495
|
+
"description": "Icon utilities for components",
|
|
2496
|
+
"constructor": "jux.icons(value: string)",
|
|
2497
|
+
"fluentMethods": [],
|
|
2498
|
+
"example": "const icon = renderIcon('🚀'); // Lucide rocket icon"
|
|
2499
|
+
},
|
|
2191
2500
|
{
|
|
2192
2501
|
"name": "Include",
|
|
2193
2502
|
"category": "UI Components",
|
|
@@ -2236,6 +2545,12 @@
|
|
|
2236
2545
|
"returns": "this",
|
|
2237
2546
|
"description": "Set withPrefetch"
|
|
2238
2547
|
},
|
|
2548
|
+
{
|
|
2549
|
+
"name": "withJson",
|
|
2550
|
+
"params": "()",
|
|
2551
|
+
"returns": "this",
|
|
2552
|
+
"description": "Set withJson"
|
|
2553
|
+
},
|
|
2239
2554
|
{
|
|
2240
2555
|
"name": "with",
|
|
2241
2556
|
"params": "(options)",
|
|
@@ -2291,7 +2606,7 @@
|
|
|
2291
2606
|
"description": "Set remove"
|
|
2292
2607
|
}
|
|
2293
2608
|
],
|
|
2294
|
-
"example": "jux.include('
|
|
2609
|
+
"example": "const config = await jux.include('config.json').asJson();"
|
|
2295
2610
|
},
|
|
2296
2611
|
{
|
|
2297
2612
|
"name": "Input",
|
|
@@ -2323,6 +2638,12 @@
|
|
|
2323
2638
|
"returns": "this",
|
|
2324
2639
|
"description": "Set label"
|
|
2325
2640
|
},
|
|
2641
|
+
{
|
|
2642
|
+
"name": "icon",
|
|
2643
|
+
"params": "(value)",
|
|
2644
|
+
"returns": "this",
|
|
2645
|
+
"description": "Set icon"
|
|
2646
|
+
},
|
|
2326
2647
|
{
|
|
2327
2648
|
"name": "required",
|
|
2328
2649
|
"params": "(value)",
|
|
@@ -2635,6 +2956,18 @@
|
|
|
2635
2956
|
"description": "Menu item configuration",
|
|
2636
2957
|
"constructor": "jux.menu(id: string, options: MenuOptions = {})",
|
|
2637
2958
|
"fluentMethods": [
|
|
2959
|
+
{
|
|
2960
|
+
"name": "bind",
|
|
2961
|
+
"params": "(event, handler)",
|
|
2962
|
+
"returns": "this",
|
|
2963
|
+
"description": "Set bind"
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"name": "sync",
|
|
2967
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2968
|
+
"returns": "this",
|
|
2969
|
+
"description": "Set sync"
|
|
2970
|
+
},
|
|
2638
2971
|
{
|
|
2639
2972
|
"name": "items",
|
|
2640
2973
|
"params": "(value)",
|
|
@@ -2740,6 +3073,18 @@
|
|
|
2740
3073
|
"returns": "this",
|
|
2741
3074
|
"description": "Set close"
|
|
2742
3075
|
},
|
|
3076
|
+
{
|
|
3077
|
+
"name": "bind",
|
|
3078
|
+
"params": "(event, handler)",
|
|
3079
|
+
"returns": "this",
|
|
3080
|
+
"description": "Set bind"
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"name": "sync",
|
|
3084
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3085
|
+
"returns": "this",
|
|
3086
|
+
"description": "Set sync"
|
|
3087
|
+
},
|
|
2743
3088
|
{
|
|
2744
3089
|
"name": "render",
|
|
2745
3090
|
"params": "(targetId?)",
|
|
@@ -2758,7 +3103,7 @@
|
|
|
2758
3103
|
{
|
|
2759
3104
|
"name": "Nav",
|
|
2760
3105
|
"category": "UI Components",
|
|
2761
|
-
"description": "
|
|
3106
|
+
"description": "Set active state on items based on current request path",
|
|
2762
3107
|
"constructor": "jux.nav(id: string, options: NavOptions = {})",
|
|
2763
3108
|
"fluentMethods": [
|
|
2764
3109
|
{
|
|
@@ -2773,12 +3118,24 @@
|
|
|
2773
3118
|
"returns": "this",
|
|
2774
3119
|
"description": "Set addItem"
|
|
2775
3120
|
},
|
|
3121
|
+
{
|
|
3122
|
+
"name": "brand",
|
|
3123
|
+
"params": "(value)",
|
|
3124
|
+
"returns": "this",
|
|
3125
|
+
"description": "Set brand"
|
|
3126
|
+
},
|
|
2776
3127
|
{
|
|
2777
3128
|
"name": "variant",
|
|
2778
3129
|
"params": "(value)",
|
|
2779
3130
|
"returns": "this",
|
|
2780
3131
|
"description": "Set variant"
|
|
2781
3132
|
},
|
|
3133
|
+
{
|
|
3134
|
+
"name": "sticky",
|
|
3135
|
+
"params": "(value)",
|
|
3136
|
+
"returns": "this",
|
|
3137
|
+
"description": "Set sticky"
|
|
3138
|
+
},
|
|
2782
3139
|
{
|
|
2783
3140
|
"name": "style",
|
|
2784
3141
|
"params": "(value)",
|
|
@@ -2791,6 +3148,18 @@
|
|
|
2791
3148
|
"returns": "this",
|
|
2792
3149
|
"description": "Set class"
|
|
2793
3150
|
},
|
|
3151
|
+
{
|
|
3152
|
+
"name": "bind",
|
|
3153
|
+
"params": "(event, handler)",
|
|
3154
|
+
"returns": "this",
|
|
3155
|
+
"description": "Set bind"
|
|
3156
|
+
},
|
|
3157
|
+
{
|
|
3158
|
+
"name": "sync",
|
|
3159
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3160
|
+
"returns": "this",
|
|
3161
|
+
"description": "Set sync"
|
|
3162
|
+
},
|
|
2794
3163
|
{
|
|
2795
3164
|
"name": "render",
|
|
2796
3165
|
"params": "(targetId?)",
|
|
@@ -2804,7 +3173,7 @@
|
|
|
2804
3173
|
"description": "Set renderTo"
|
|
2805
3174
|
}
|
|
2806
3175
|
],
|
|
2807
|
-
"example": "
|
|
3176
|
+
"example": "jux.nav('id').render()"
|
|
2808
3177
|
},
|
|
2809
3178
|
{
|
|
2810
3179
|
"name": "Paragraph",
|
|
@@ -2832,13 +3201,13 @@
|
|
|
2832
3201
|
},
|
|
2833
3202
|
{
|
|
2834
3203
|
"name": "bind",
|
|
2835
|
-
"params": "(
|
|
3204
|
+
"params": "(event, handler)",
|
|
2836
3205
|
"returns": "this",
|
|
2837
3206
|
"description": "Set bind"
|
|
2838
3207
|
},
|
|
2839
3208
|
{
|
|
2840
3209
|
"name": "sync",
|
|
2841
|
-
"params": "(property, stateObj,
|
|
3210
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2842
3211
|
"returns": "this",
|
|
2843
3212
|
"description": "Set sync"
|
|
2844
3213
|
},
|
|
@@ -2847,14 +3216,20 @@
|
|
|
2847
3216
|
"params": "(targetId?)",
|
|
2848
3217
|
"returns": "this",
|
|
2849
3218
|
"description": "Set render"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"name": "renderTo",
|
|
3222
|
+
"params": "(juxComponent)",
|
|
3223
|
+
"returns": "this",
|
|
3224
|
+
"description": "Set renderTo"
|
|
2850
3225
|
}
|
|
2851
3226
|
],
|
|
2852
|
-
"example": "jux.paragraph('
|
|
3227
|
+
"example": "jux.paragraph('id').render()"
|
|
2853
3228
|
},
|
|
2854
3229
|
{
|
|
2855
3230
|
"name": "Progress",
|
|
2856
3231
|
"category": "UI Components",
|
|
2857
|
-
"description": "Progress component
|
|
3232
|
+
"description": "Progress component",
|
|
2858
3233
|
"constructor": "jux.progress(id: string, options: ProgressOptions = {})",
|
|
2859
3234
|
"fluentMethods": [
|
|
2860
3235
|
{
|
|
@@ -2919,10 +3294,16 @@
|
|
|
2919
3294
|
},
|
|
2920
3295
|
{
|
|
2921
3296
|
"name": "bind",
|
|
2922
|
-
"params": "(
|
|
3297
|
+
"params": "(event, handler)",
|
|
2923
3298
|
"returns": "this",
|
|
2924
3299
|
"description": "Set bind"
|
|
2925
3300
|
},
|
|
3301
|
+
{
|
|
3302
|
+
"name": "sync",
|
|
3303
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3304
|
+
"returns": "this",
|
|
3305
|
+
"description": "Set sync"
|
|
3306
|
+
},
|
|
2926
3307
|
{
|
|
2927
3308
|
"name": "render",
|
|
2928
3309
|
"params": "(targetId?)",
|
|
@@ -2936,7 +3317,7 @@
|
|
|
2936
3317
|
"description": "Set renderTo"
|
|
2937
3318
|
}
|
|
2938
3319
|
],
|
|
2939
|
-
"example": "jux.progress('
|
|
3320
|
+
"example": "jux.progress('id').render()"
|
|
2940
3321
|
},
|
|
2941
3322
|
{
|
|
2942
3323
|
"name": "Radio",
|
|
@@ -2988,10 +3369,16 @@
|
|
|
2988
3369
|
},
|
|
2989
3370
|
{
|
|
2990
3371
|
"name": "bind",
|
|
2991
|
-
"params": "(
|
|
3372
|
+
"params": "(event, handler)",
|
|
2992
3373
|
"returns": "this",
|
|
2993
3374
|
"description": "Set bind"
|
|
2994
3375
|
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "sync",
|
|
3378
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3379
|
+
"returns": "this",
|
|
3380
|
+
"description": "Set sync"
|
|
3381
|
+
},
|
|
2995
3382
|
{
|
|
2996
3383
|
"name": "render",
|
|
2997
3384
|
"params": "(targetId?)",
|
|
@@ -3018,7 +3405,7 @@
|
|
|
3018
3405
|
{
|
|
3019
3406
|
"name": "Select",
|
|
3020
3407
|
"category": "UI Components",
|
|
3021
|
-
"description": "
|
|
3408
|
+
"description": "Bind event handler (stores for wiring in render)",
|
|
3022
3409
|
"constructor": "jux.select(id: string, options: SelectOptions = {})",
|
|
3023
3410
|
"fluentMethods": [
|
|
3024
3411
|
{
|
|
@@ -3077,10 +3464,16 @@
|
|
|
3077
3464
|
},
|
|
3078
3465
|
{
|
|
3079
3466
|
"name": "bind",
|
|
3080
|
-
"params": "(
|
|
3467
|
+
"params": "(event, handler)",
|
|
3081
3468
|
"returns": "this",
|
|
3082
3469
|
"description": "Set bind"
|
|
3083
3470
|
},
|
|
3471
|
+
{
|
|
3472
|
+
"name": "sync",
|
|
3473
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3474
|
+
"returns": "this",
|
|
3475
|
+
"description": "Set sync"
|
|
3476
|
+
},
|
|
3084
3477
|
{
|
|
3085
3478
|
"name": "render",
|
|
3086
3479
|
"params": "(targetId?)",
|
|
@@ -3099,15 +3492,9 @@
|
|
|
3099
3492
|
{
|
|
3100
3493
|
"name": "Sidebar",
|
|
3101
3494
|
"category": "UI Components",
|
|
3102
|
-
"description": "Sidebar component
|
|
3495
|
+
"description": "Sidebar component",
|
|
3103
3496
|
"constructor": "jux.sidebar(id: string, options: SidebarOptions = {})",
|
|
3104
3497
|
"fluentMethods": [
|
|
3105
|
-
{
|
|
3106
|
-
"name": "title",
|
|
3107
|
-
"params": "(value)",
|
|
3108
|
-
"returns": "this",
|
|
3109
|
-
"description": "Set title"
|
|
3110
|
-
},
|
|
3111
3498
|
{
|
|
3112
3499
|
"name": "width",
|
|
3113
3500
|
"params": "(value)",
|
|
@@ -3145,10 +3532,16 @@
|
|
|
3145
3532
|
"description": "Set class"
|
|
3146
3533
|
},
|
|
3147
3534
|
{
|
|
3148
|
-
"name": "
|
|
3149
|
-
"params": "()",
|
|
3535
|
+
"name": "bind",
|
|
3536
|
+
"params": "(event, handler)",
|
|
3150
3537
|
"returns": "this",
|
|
3151
|
-
"description": "Set
|
|
3538
|
+
"description": "Set bind"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"name": "sync",
|
|
3542
|
+
"params": "(property, stateObj, transform?)",
|
|
3543
|
+
"returns": "this",
|
|
3544
|
+
"description": "Set sync"
|
|
3152
3545
|
},
|
|
3153
3546
|
{
|
|
3154
3547
|
"name": "render",
|
|
@@ -3163,20 +3556,14 @@
|
|
|
3163
3556
|
"description": "Set renderTo"
|
|
3164
3557
|
}
|
|
3165
3558
|
],
|
|
3166
|
-
"example": "
|
|
3559
|
+
"example": "jux.sidebar('id').render()"
|
|
3167
3560
|
},
|
|
3168
3561
|
{
|
|
3169
3562
|
"name": "Switch",
|
|
3170
3563
|
"category": "UI Components",
|
|
3171
|
-
"description": "
|
|
3564
|
+
"description": "Bind event handler (stores for wiring in render)",
|
|
3172
3565
|
"constructor": "jux.switch(id: string, options: SwitchOptions = {})",
|
|
3173
3566
|
"fluentMethods": [
|
|
3174
|
-
{
|
|
3175
|
-
"name": "label",
|
|
3176
|
-
"params": "(value)",
|
|
3177
|
-
"returns": "this",
|
|
3178
|
-
"description": "Set label"
|
|
3179
|
-
},
|
|
3180
3567
|
{
|
|
3181
3568
|
"name": "checked",
|
|
3182
3569
|
"params": "(value)",
|
|
@@ -3184,10 +3571,10 @@
|
|
|
3184
3571
|
"description": "Set checked"
|
|
3185
3572
|
},
|
|
3186
3573
|
{
|
|
3187
|
-
"name": "
|
|
3574
|
+
"name": "label",
|
|
3188
3575
|
"params": "(value)",
|
|
3189
3576
|
"returns": "this",
|
|
3190
|
-
"description": "Set
|
|
3577
|
+
"description": "Set label"
|
|
3191
3578
|
},
|
|
3192
3579
|
{
|
|
3193
3580
|
"name": "name",
|
|
@@ -3195,6 +3582,12 @@
|
|
|
3195
3582
|
"returns": "this",
|
|
3196
3583
|
"description": "Set name"
|
|
3197
3584
|
},
|
|
3585
|
+
{
|
|
3586
|
+
"name": "disabled",
|
|
3587
|
+
"params": "(value)",
|
|
3588
|
+
"returns": "this",
|
|
3589
|
+
"description": "Set disabled"
|
|
3590
|
+
},
|
|
3198
3591
|
{
|
|
3199
3592
|
"name": "style",
|
|
3200
3593
|
"params": "(value)",
|
|
@@ -3209,15 +3602,15 @@
|
|
|
3209
3602
|
},
|
|
3210
3603
|
{
|
|
3211
3604
|
"name": "bind",
|
|
3212
|
-
"params": "(
|
|
3605
|
+
"params": "(event, handler)",
|
|
3213
3606
|
"returns": "this",
|
|
3214
3607
|
"description": "Set bind"
|
|
3215
3608
|
},
|
|
3216
3609
|
{
|
|
3217
|
-
"name": "
|
|
3218
|
-
"params": "()",
|
|
3610
|
+
"name": "sync",
|
|
3611
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3219
3612
|
"returns": "this",
|
|
3220
|
-
"description": "Set
|
|
3613
|
+
"description": "Set sync"
|
|
3221
3614
|
},
|
|
3222
3615
|
{
|
|
3223
3616
|
"name": "render",
|
|
@@ -3232,12 +3625,12 @@
|
|
|
3232
3625
|
"description": "Set renderTo"
|
|
3233
3626
|
}
|
|
3234
3627
|
],
|
|
3235
|
-
"example": "jux.switch('
|
|
3628
|
+
"example": "jux.switch('id').render()"
|
|
3236
3629
|
},
|
|
3237
3630
|
{
|
|
3238
3631
|
"name": "Tabs",
|
|
3239
3632
|
"category": "UI Components",
|
|
3240
|
-
"description": "
|
|
3633
|
+
"description": "Tabs component",
|
|
3241
3634
|
"constructor": "jux.tabs(id: string, options: TabsOptions = {})",
|
|
3242
3635
|
"fluentMethods": [
|
|
3243
3636
|
{
|
|
@@ -3258,6 +3651,12 @@
|
|
|
3258
3651
|
"returns": "this",
|
|
3259
3652
|
"description": "Set activeTab"
|
|
3260
3653
|
},
|
|
3654
|
+
{
|
|
3655
|
+
"name": "variant",
|
|
3656
|
+
"params": "(value)",
|
|
3657
|
+
"returns": "this",
|
|
3658
|
+
"description": "Set variant"
|
|
3659
|
+
},
|
|
3261
3660
|
{
|
|
3262
3661
|
"name": "style",
|
|
3263
3662
|
"params": "(value)",
|
|
@@ -3270,6 +3669,18 @@
|
|
|
3270
3669
|
"returns": "this",
|
|
3271
3670
|
"description": "Set class"
|
|
3272
3671
|
},
|
|
3672
|
+
{
|
|
3673
|
+
"name": "bind",
|
|
3674
|
+
"params": "(event, handler)",
|
|
3675
|
+
"returns": "this",
|
|
3676
|
+
"description": "Set bind"
|
|
3677
|
+
},
|
|
3678
|
+
{
|
|
3679
|
+
"name": "sync",
|
|
3680
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3681
|
+
"returns": "this",
|
|
3682
|
+
"description": "Set sync"
|
|
3683
|
+
},
|
|
3273
3684
|
{
|
|
3274
3685
|
"name": "render",
|
|
3275
3686
|
"params": "(targetId?)",
|
|
@@ -3283,7 +3694,7 @@
|
|
|
3283
3694
|
"description": "Set renderTo"
|
|
3284
3695
|
}
|
|
3285
3696
|
],
|
|
3286
|
-
"example": "
|
|
3697
|
+
"example": "jux.tabs('id').render()"
|
|
3287
3698
|
},
|
|
3288
3699
|
{
|
|
3289
3700
|
"name": "Theme-toggle",
|
|
@@ -3408,7 +3819,7 @@
|
|
|
3408
3819
|
{
|
|
3409
3820
|
"name": "Tooltip",
|
|
3410
3821
|
"category": "UI Components",
|
|
3411
|
-
"description": "
|
|
3822
|
+
"description": "Attach tooltip to an element",
|
|
3412
3823
|
"constructor": "jux.tooltip(id: string, options: TooltipOptions = {})",
|
|
3413
3824
|
"fluentMethods": [
|
|
3414
3825
|
{
|
|
@@ -3441,6 +3852,18 @@
|
|
|
3441
3852
|
"returns": "this",
|
|
3442
3853
|
"description": "Set class"
|
|
3443
3854
|
},
|
|
3855
|
+
{
|
|
3856
|
+
"name": "bind",
|
|
3857
|
+
"params": "(event, handler)",
|
|
3858
|
+
"returns": "this",
|
|
3859
|
+
"description": "Set bind"
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
"name": "sync",
|
|
3863
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3864
|
+
"returns": "this",
|
|
3865
|
+
"description": "Set sync"
|
|
3866
|
+
},
|
|
3444
3867
|
{
|
|
3445
3868
|
"name": "attachTo",
|
|
3446
3869
|
"params": "(target)",
|
|
@@ -3460,7 +3883,7 @@
|
|
|
3460
3883
|
"description": "Set renderTo"
|
|
3461
3884
|
}
|
|
3462
3885
|
],
|
|
3463
|
-
"example": "
|
|
3886
|
+
"example": "jux.tooltip('id').render()"
|
|
3464
3887
|
},
|
|
3465
3888
|
{
|
|
3466
3889
|
"name": "View",
|
|
@@ -3542,5 +3965,5 @@
|
|
|
3542
3965
|
}
|
|
3543
3966
|
],
|
|
3544
3967
|
"version": "1.0.0",
|
|
3545
|
-
"lastUpdated": "2026-01-
|
|
3968
|
+
"lastUpdated": "2026-01-23T20:33:28.828Z"
|
|
3546
3969
|
}
|