juxscript 1.0.18 → 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 +99 -101
- 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 +711 -264
- 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 +174 -125
- 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 +78 -28
- 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/lib/reactivity/state.ts +13 -299
- 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)",
|
|
425
591
|
"returns": "this",
|
|
426
|
-
"description": "Set
|
|
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": "()",
|
|
603
|
+
"returns": "this",
|
|
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)",
|
|
@@ -590,24 +732,6 @@
|
|
|
590
732
|
"returns": "this",
|
|
591
733
|
"description": "Set height"
|
|
592
734
|
},
|
|
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"
|
|
610
|
-
},
|
|
611
735
|
{
|
|
612
736
|
"name": "theme",
|
|
613
737
|
"params": "(value)",
|
|
@@ -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?)",
|
|
@@ -1154,6 +1308,18 @@
|
|
|
1154
1308
|
"returns": "this",
|
|
1155
1309
|
"description": "Set class"
|
|
1156
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
|
+
},
|
|
1157
1323
|
{
|
|
1158
1324
|
"name": "render",
|
|
1159
1325
|
"params": "(targetId?)",
|
|
@@ -1167,12 +1333,12 @@
|
|
|
1167
1333
|
"description": "Set renderTo"
|
|
1168
1334
|
}
|
|
1169
1335
|
],
|
|
1170
|
-
"example": "jux.button('
|
|
1336
|
+
"example": "jux.button('id').render()"
|
|
1171
1337
|
},
|
|
1172
1338
|
{
|
|
1173
1339
|
"name": "Card",
|
|
1174
1340
|
"category": "UI Components",
|
|
1175
|
-
"description": "Card component
|
|
1341
|
+
"description": "Card component",
|
|
1176
1342
|
"constructor": "jux.card(id: string, options: CardOptions = {})",
|
|
1177
1343
|
"fluentMethods": [
|
|
1178
1344
|
{
|
|
@@ -1181,12 +1347,6 @@
|
|
|
1181
1347
|
"returns": "this",
|
|
1182
1348
|
"description": "Set title"
|
|
1183
1349
|
},
|
|
1184
|
-
{
|
|
1185
|
-
"name": "subtitle",
|
|
1186
|
-
"params": "(value)",
|
|
1187
|
-
"returns": "this",
|
|
1188
|
-
"description": "Set subtitle"
|
|
1189
|
-
},
|
|
1190
1350
|
{
|
|
1191
1351
|
"name": "content",
|
|
1192
1352
|
"params": "(value)",
|
|
@@ -1194,16 +1354,10 @@
|
|
|
1194
1354
|
"description": "Set content"
|
|
1195
1355
|
},
|
|
1196
1356
|
{
|
|
1197
|
-
"name": "
|
|
1198
|
-
"params": "(value)",
|
|
1199
|
-
"returns": "this",
|
|
1200
|
-
"description": "Set image"
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"name": "variant",
|
|
1357
|
+
"name": "footer",
|
|
1204
1358
|
"params": "(value)",
|
|
1205
1359
|
"returns": "this",
|
|
1206
|
-
"description": "Set
|
|
1360
|
+
"description": "Set footer"
|
|
1207
1361
|
},
|
|
1208
1362
|
{
|
|
1209
1363
|
"name": "style",
|
|
@@ -1218,10 +1372,16 @@
|
|
|
1218
1372
|
"description": "Set class"
|
|
1219
1373
|
},
|
|
1220
1374
|
{
|
|
1221
|
-
"name": "
|
|
1222
|
-
"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?)",
|
|
1223
1383
|
"returns": "this",
|
|
1224
|
-
"description": "Set
|
|
1384
|
+
"description": "Set sync"
|
|
1225
1385
|
},
|
|
1226
1386
|
{
|
|
1227
1387
|
"name": "render",
|
|
@@ -1236,12 +1396,12 @@
|
|
|
1236
1396
|
"description": "Set renderTo"
|
|
1237
1397
|
}
|
|
1238
1398
|
],
|
|
1239
|
-
"example": "
|
|
1399
|
+
"example": "jux.card('id').render()"
|
|
1240
1400
|
},
|
|
1241
1401
|
{
|
|
1242
1402
|
"name": "Checkbox",
|
|
1243
1403
|
"category": "UI Components",
|
|
1244
|
-
"description": "
|
|
1404
|
+
"description": "Checkbox component",
|
|
1245
1405
|
"constructor": "jux.checkbox(id: string, options: CheckboxOptions = {})",
|
|
1246
1406
|
"fluentMethods": [
|
|
1247
1407
|
{
|
|
@@ -1288,10 +1448,22 @@
|
|
|
1288
1448
|
},
|
|
1289
1449
|
{
|
|
1290
1450
|
"name": "bind",
|
|
1291
|
-
"params": "(
|
|
1451
|
+
"params": "(event, handler)",
|
|
1292
1452
|
"returns": "this",
|
|
1293
1453
|
"description": "Set bind"
|
|
1294
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
|
+
},
|
|
1295
1467
|
{
|
|
1296
1468
|
"name": "render",
|
|
1297
1469
|
"params": "(targetId?)",
|
|
@@ -1305,13 +1477,13 @@
|
|
|
1305
1477
|
"description": "Set renderTo"
|
|
1306
1478
|
}
|
|
1307
1479
|
],
|
|
1308
|
-
"example": "jux.checkbox('
|
|
1480
|
+
"example": "jux.checkbox('terms', {"
|
|
1309
1481
|
},
|
|
1310
1482
|
{
|
|
1311
1483
|
"name": "Code",
|
|
1312
1484
|
"category": "UI Components",
|
|
1313
|
-
"description": "Code component
|
|
1314
|
-
"constructor": "jux.code(id: string,
|
|
1485
|
+
"description": "Code component",
|
|
1486
|
+
"constructor": "jux.code(id: string, options: CodeOptions = {})",
|
|
1315
1487
|
"fluentMethods": [
|
|
1316
1488
|
{
|
|
1317
1489
|
"name": "code",
|
|
@@ -1326,28 +1498,28 @@
|
|
|
1326
1498
|
"description": "Set language"
|
|
1327
1499
|
},
|
|
1328
1500
|
{
|
|
1329
|
-
"name": "
|
|
1501
|
+
"name": "style",
|
|
1330
1502
|
"params": "(value)",
|
|
1331
1503
|
"returns": "this",
|
|
1332
|
-
"description": "Set
|
|
1504
|
+
"description": "Set style"
|
|
1333
1505
|
},
|
|
1334
1506
|
{
|
|
1335
|
-
"name": "
|
|
1507
|
+
"name": "class",
|
|
1336
1508
|
"params": "(value)",
|
|
1337
1509
|
"returns": "this",
|
|
1338
|
-
"description": "Set
|
|
1510
|
+
"description": "Set class"
|
|
1339
1511
|
},
|
|
1340
1512
|
{
|
|
1341
|
-
"name": "
|
|
1342
|
-
"params": "(
|
|
1513
|
+
"name": "bind",
|
|
1514
|
+
"params": "(event, handler)",
|
|
1343
1515
|
"returns": "this",
|
|
1344
|
-
"description": "Set
|
|
1516
|
+
"description": "Set bind"
|
|
1345
1517
|
},
|
|
1346
1518
|
{
|
|
1347
|
-
"name": "
|
|
1348
|
-
"params": "(
|
|
1519
|
+
"name": "sync",
|
|
1520
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1349
1521
|
"returns": "this",
|
|
1350
|
-
"description": "Set
|
|
1522
|
+
"description": "Set sync"
|
|
1351
1523
|
},
|
|
1352
1524
|
{
|
|
1353
1525
|
"name": "render",
|
|
@@ -1362,7 +1534,7 @@
|
|
|
1362
1534
|
"description": "Set renderTo"
|
|
1363
1535
|
}
|
|
1364
1536
|
],
|
|
1365
|
-
"example": "
|
|
1537
|
+
"example": "jux.code('id').render()"
|
|
1366
1538
|
},
|
|
1367
1539
|
{
|
|
1368
1540
|
"name": "Container",
|
|
@@ -1418,7 +1590,7 @@
|
|
|
1418
1590
|
{
|
|
1419
1591
|
"name": "Datepicker",
|
|
1420
1592
|
"category": "UI Components",
|
|
1421
|
-
"description": "
|
|
1593
|
+
"description": "Datepicker component",
|
|
1422
1594
|
"constructor": "jux.datepicker(id: string, options: DatePickerOptions = {})",
|
|
1423
1595
|
"fluentMethods": [
|
|
1424
1596
|
{
|
|
@@ -1428,16 +1600,10 @@
|
|
|
1428
1600
|
"description": "Set value"
|
|
1429
1601
|
},
|
|
1430
1602
|
{
|
|
1431
|
-
"name": "
|
|
1432
|
-
"params": "(value)",
|
|
1433
|
-
"returns": "this",
|
|
1434
|
-
"description": "Set min"
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"name": "max",
|
|
1603
|
+
"name": "label",
|
|
1438
1604
|
"params": "(value)",
|
|
1439
1605
|
"returns": "this",
|
|
1440
|
-
"description": "Set
|
|
1606
|
+
"description": "Set label"
|
|
1441
1607
|
},
|
|
1442
1608
|
{
|
|
1443
1609
|
"name": "placeholder",
|
|
@@ -1452,10 +1618,16 @@
|
|
|
1452
1618
|
"description": "Set disabled"
|
|
1453
1619
|
},
|
|
1454
1620
|
{
|
|
1455
|
-
"name": "
|
|
1621
|
+
"name": "min",
|
|
1456
1622
|
"params": "(value)",
|
|
1457
1623
|
"returns": "this",
|
|
1458
|
-
"description": "Set
|
|
1624
|
+
"description": "Set min"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"name": "max",
|
|
1628
|
+
"params": "(value)",
|
|
1629
|
+
"returns": "this",
|
|
1630
|
+
"description": "Set max"
|
|
1459
1631
|
},
|
|
1460
1632
|
{
|
|
1461
1633
|
"name": "style",
|
|
@@ -1471,10 +1643,16 @@
|
|
|
1471
1643
|
},
|
|
1472
1644
|
{
|
|
1473
1645
|
"name": "bind",
|
|
1474
|
-
"params": "(
|
|
1646
|
+
"params": "(event, handler)",
|
|
1475
1647
|
"returns": "this",
|
|
1476
1648
|
"description": "Set bind"
|
|
1477
1649
|
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "sync",
|
|
1652
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1653
|
+
"returns": "this",
|
|
1654
|
+
"description": "Set sync"
|
|
1655
|
+
},
|
|
1478
1656
|
{
|
|
1479
1657
|
"name": "render",
|
|
1480
1658
|
"params": "(targetId?)",
|
|
@@ -1488,12 +1666,12 @@
|
|
|
1488
1666
|
"description": "Set renderTo"
|
|
1489
1667
|
}
|
|
1490
1668
|
],
|
|
1491
|
-
"example": "jux.datepicker('
|
|
1669
|
+
"example": "jux.datepicker('id').render()"
|
|
1492
1670
|
},
|
|
1493
1671
|
{
|
|
1494
1672
|
"name": "Dialog",
|
|
1495
1673
|
"category": "UI Components",
|
|
1496
|
-
"description": "Dialog component
|
|
1674
|
+
"description": "Dialog component",
|
|
1497
1675
|
"constructor": "jux.dialog(id: string, options: DialogOptions = {})",
|
|
1498
1676
|
"fluentMethods": [
|
|
1499
1677
|
{
|
|
@@ -1503,28 +1681,28 @@
|
|
|
1503
1681
|
"description": "Set title"
|
|
1504
1682
|
},
|
|
1505
1683
|
{
|
|
1506
|
-
"name": "
|
|
1684
|
+
"name": "content",
|
|
1507
1685
|
"params": "(value)",
|
|
1508
1686
|
"returns": "this",
|
|
1509
|
-
"description": "Set
|
|
1687
|
+
"description": "Set content"
|
|
1510
1688
|
},
|
|
1511
1689
|
{
|
|
1512
|
-
"name": "
|
|
1690
|
+
"name": "showClose",
|
|
1513
1691
|
"params": "(value)",
|
|
1514
1692
|
"returns": "this",
|
|
1515
|
-
"description": "Set
|
|
1693
|
+
"description": "Set showClose"
|
|
1516
1694
|
},
|
|
1517
1695
|
{
|
|
1518
|
-
"name": "
|
|
1696
|
+
"name": "modal",
|
|
1519
1697
|
"params": "(value)",
|
|
1520
1698
|
"returns": "this",
|
|
1521
|
-
"description": "Set
|
|
1699
|
+
"description": "Set modal"
|
|
1522
1700
|
},
|
|
1523
1701
|
{
|
|
1524
|
-
"name": "
|
|
1702
|
+
"name": "width",
|
|
1525
1703
|
"params": "(value)",
|
|
1526
1704
|
"returns": "this",
|
|
1527
|
-
"description": "Set
|
|
1705
|
+
"description": "Set width"
|
|
1528
1706
|
},
|
|
1529
1707
|
{
|
|
1530
1708
|
"name": "style",
|
|
@@ -1538,6 +1716,18 @@
|
|
|
1538
1716
|
"returns": "this",
|
|
1539
1717
|
"description": "Set class"
|
|
1540
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
|
+
},
|
|
1541
1731
|
{
|
|
1542
1732
|
"name": "render",
|
|
1543
1733
|
"params": "(targetId?)",
|
|
@@ -1551,37 +1741,25 @@
|
|
|
1551
1741
|
"description": "Set renderTo"
|
|
1552
1742
|
}
|
|
1553
1743
|
],
|
|
1554
|
-
"example": "jux.dialog('
|
|
1744
|
+
"example": "jux.dialog('id').render()"
|
|
1555
1745
|
},
|
|
1556
1746
|
{
|
|
1557
1747
|
"name": "Divider",
|
|
1558
1748
|
"category": "UI Components",
|
|
1559
|
-
"description": "Divider
|
|
1560
|
-
"constructor": "jux.divider(options: DividerOptions = {})",
|
|
1749
|
+
"description": "Divider component",
|
|
1750
|
+
"constructor": "jux.divider(id: string, options: DividerOptions = {})",
|
|
1561
1751
|
"fluentMethods": [
|
|
1562
1752
|
{
|
|
1563
|
-
"name": "
|
|
1564
|
-
"params": "(value)",
|
|
1565
|
-
"returns": "this",
|
|
1566
|
-
"description": "Set orientation"
|
|
1567
|
-
},
|
|
1568
|
-
{
|
|
1569
|
-
"name": "thickness",
|
|
1570
|
-
"params": "(value)",
|
|
1571
|
-
"returns": "this",
|
|
1572
|
-
"description": "Set thickness"
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"name": "color",
|
|
1753
|
+
"name": "text",
|
|
1576
1754
|
"params": "(value)",
|
|
1577
1755
|
"returns": "this",
|
|
1578
|
-
"description": "Set
|
|
1756
|
+
"description": "Set text"
|
|
1579
1757
|
},
|
|
1580
1758
|
{
|
|
1581
|
-
"name": "
|
|
1759
|
+
"name": "orientation",
|
|
1582
1760
|
"params": "(value)",
|
|
1583
1761
|
"returns": "this",
|
|
1584
|
-
"description": "Set
|
|
1762
|
+
"description": "Set orientation"
|
|
1585
1763
|
},
|
|
1586
1764
|
{
|
|
1587
1765
|
"name": "style",
|
|
@@ -1590,37 +1768,37 @@
|
|
|
1590
1768
|
"description": "Set style"
|
|
1591
1769
|
},
|
|
1592
1770
|
{
|
|
1593
|
-
"name": "
|
|
1771
|
+
"name": "class",
|
|
1594
1772
|
"params": "(value)",
|
|
1595
1773
|
"returns": "this",
|
|
1596
|
-
"description": "Set
|
|
1774
|
+
"description": "Set class"
|
|
1597
1775
|
},
|
|
1598
1776
|
{
|
|
1599
|
-
"name": "
|
|
1600
|
-
"params": "(
|
|
1777
|
+
"name": "bind",
|
|
1778
|
+
"params": "(event, handler)",
|
|
1601
1779
|
"returns": "this",
|
|
1602
|
-
"description": "Set
|
|
1780
|
+
"description": "Set bind"
|
|
1603
1781
|
},
|
|
1604
1782
|
{
|
|
1605
|
-
"name": "
|
|
1606
|
-
"params": "(
|
|
1783
|
+
"name": "sync",
|
|
1784
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
1607
1785
|
"returns": "this",
|
|
1608
|
-
"description": "Set
|
|
1786
|
+
"description": "Set sync"
|
|
1609
1787
|
},
|
|
1610
1788
|
{
|
|
1611
|
-
"name": "
|
|
1612
|
-
"params": "(
|
|
1789
|
+
"name": "render",
|
|
1790
|
+
"params": "(targetId?)",
|
|
1613
1791
|
"returns": "this",
|
|
1614
|
-
"description": "Set
|
|
1792
|
+
"description": "Set render"
|
|
1615
1793
|
},
|
|
1616
1794
|
{
|
|
1617
|
-
"name": "
|
|
1618
|
-
"params": "(
|
|
1795
|
+
"name": "renderTo",
|
|
1796
|
+
"params": "(juxComponent)",
|
|
1619
1797
|
"returns": "this",
|
|
1620
|
-
"description": "Set
|
|
1798
|
+
"description": "Set renderTo"
|
|
1621
1799
|
}
|
|
1622
1800
|
],
|
|
1623
|
-
"example": "
|
|
1801
|
+
"example": "jux.divider('id').render()"
|
|
1624
1802
|
},
|
|
1625
1803
|
{
|
|
1626
1804
|
"name": "Doughnutchart",
|
|
@@ -1808,6 +1986,18 @@
|
|
|
1808
1986
|
"returns": "this",
|
|
1809
1987
|
"description": "Set borderRadius"
|
|
1810
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
|
+
},
|
|
1811
2001
|
{
|
|
1812
2002
|
"name": "render",
|
|
1813
2003
|
"params": "(targetId?)",
|
|
@@ -1820,7 +2010,7 @@
|
|
|
1820
2010
|
{
|
|
1821
2011
|
"name": "Dropdown",
|
|
1822
2012
|
"category": "UI Components",
|
|
1823
|
-
"description": "Dropdown
|
|
2013
|
+
"description": "Dropdown component",
|
|
1824
2014
|
"constructor": "jux.dropdown(id: string, options: DropdownOptions = {})",
|
|
1825
2015
|
"fluentMethods": [
|
|
1826
2016
|
{
|
|
@@ -1859,6 +2049,18 @@
|
|
|
1859
2049
|
"returns": "this",
|
|
1860
2050
|
"description": "Set class"
|
|
1861
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
|
+
},
|
|
1862
2064
|
{
|
|
1863
2065
|
"name": "render",
|
|
1864
2066
|
"params": "(targetId?)",
|
|
@@ -1872,12 +2074,12 @@
|
|
|
1872
2074
|
"description": "Set renderTo"
|
|
1873
2075
|
}
|
|
1874
2076
|
],
|
|
1875
|
-
"example": "jux.dropdown('
|
|
2077
|
+
"example": "jux.dropdown('id').render()"
|
|
1876
2078
|
},
|
|
1877
2079
|
{
|
|
1878
2080
|
"name": "Element",
|
|
1879
2081
|
"category": "UI Components",
|
|
1880
|
-
"description": "
|
|
2082
|
+
"description": "Set the HTML tag type",
|
|
1881
2083
|
"constructor": "jux.element(id: string, options: ElementOptions = {})",
|
|
1882
2084
|
"fluentMethods": [
|
|
1883
2085
|
{
|
|
@@ -1887,31 +2089,31 @@
|
|
|
1887
2089
|
"description": "Render component to DOM"
|
|
1888
2090
|
}
|
|
1889
2091
|
],
|
|
1890
|
-
"example": "const
|
|
2092
|
+
"example": "const container = jux.element('myContainer');"
|
|
1891
2093
|
},
|
|
1892
2094
|
{
|
|
1893
2095
|
"name": "Fileupload",
|
|
1894
2096
|
"category": "UI Components",
|
|
1895
|
-
"description": "
|
|
2097
|
+
"description": "Fileupload component",
|
|
1896
2098
|
"constructor": "jux.fileupload(id: string, options: FileUploadOptions = {})",
|
|
1897
2099
|
"fluentMethods": [
|
|
1898
2100
|
{
|
|
1899
|
-
"name": "
|
|
2101
|
+
"name": "label",
|
|
1900
2102
|
"params": "(value)",
|
|
1901
2103
|
"returns": "this",
|
|
1902
|
-
"description": "Set
|
|
2104
|
+
"description": "Set label"
|
|
1903
2105
|
},
|
|
1904
2106
|
{
|
|
1905
|
-
"name": "
|
|
2107
|
+
"name": "accept",
|
|
1906
2108
|
"params": "(value)",
|
|
1907
2109
|
"returns": "this",
|
|
1908
|
-
"description": "Set
|
|
2110
|
+
"description": "Set accept"
|
|
1909
2111
|
},
|
|
1910
2112
|
{
|
|
1911
|
-
"name": "
|
|
2113
|
+
"name": "multiple",
|
|
1912
2114
|
"params": "(value)",
|
|
1913
2115
|
"returns": "this",
|
|
1914
|
-
"description": "Set
|
|
2116
|
+
"description": "Set multiple"
|
|
1915
2117
|
},
|
|
1916
2118
|
{
|
|
1917
2119
|
"name": "disabled",
|
|
@@ -1920,16 +2122,10 @@
|
|
|
1920
2122
|
"description": "Set disabled"
|
|
1921
2123
|
},
|
|
1922
2124
|
{
|
|
1923
|
-
"name": "
|
|
1924
|
-
"params": "(value)",
|
|
1925
|
-
"returns": "this",
|
|
1926
|
-
"description": "Set text"
|
|
1927
|
-
},
|
|
1928
|
-
{
|
|
1929
|
-
"name": "dragText",
|
|
2125
|
+
"name": "name",
|
|
1930
2126
|
"params": "(value)",
|
|
1931
2127
|
"returns": "this",
|
|
1932
|
-
"description": "Set
|
|
2128
|
+
"description": "Set name"
|
|
1933
2129
|
},
|
|
1934
2130
|
{
|
|
1935
2131
|
"name": "style",
|
|
@@ -1943,6 +2139,18 @@
|
|
|
1943
2139
|
"returns": "this",
|
|
1944
2140
|
"description": "Set class"
|
|
1945
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
|
+
},
|
|
1946
2154
|
{
|
|
1947
2155
|
"name": "render",
|
|
1948
2156
|
"params": "(targetId?)",
|
|
@@ -1956,7 +2164,7 @@
|
|
|
1956
2164
|
"description": "Set renderTo"
|
|
1957
2165
|
}
|
|
1958
2166
|
],
|
|
1959
|
-
"example": "jux.fileupload('
|
|
2167
|
+
"example": "jux.fileupload('id').render()"
|
|
1960
2168
|
},
|
|
1961
2169
|
{
|
|
1962
2170
|
"name": "Footer",
|
|
@@ -2096,11 +2304,29 @@
|
|
|
2096
2304
|
"returns": "this",
|
|
2097
2305
|
"description": "Set style"
|
|
2098
2306
|
},
|
|
2307
|
+
{
|
|
2308
|
+
"name": "bind",
|
|
2309
|
+
"params": "(event, handler)",
|
|
2310
|
+
"returns": "this",
|
|
2311
|
+
"description": "Set bind"
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"name": "sync",
|
|
2315
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2316
|
+
"returns": "this",
|
|
2317
|
+
"description": "Set sync"
|
|
2318
|
+
},
|
|
2099
2319
|
{
|
|
2100
2320
|
"name": "render",
|
|
2101
2321
|
"params": "(targetId?)",
|
|
2102
2322
|
"returns": "this",
|
|
2103
2323
|
"description": "Set render"
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"name": "renderTo",
|
|
2327
|
+
"params": "(juxComponent)",
|
|
2328
|
+
"returns": "this",
|
|
2329
|
+
"description": "Set renderTo"
|
|
2104
2330
|
}
|
|
2105
2331
|
],
|
|
2106
2332
|
"example": "jux.heading('title', { level: 1, text: 'Welcome' }).render('#app');"
|
|
@@ -2167,6 +2393,18 @@
|
|
|
2167
2393
|
"returns": "this",
|
|
2168
2394
|
"description": "Set class"
|
|
2169
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
|
+
},
|
|
2170
2408
|
{
|
|
2171
2409
|
"name": "render",
|
|
2172
2410
|
"params": "(targetId?)",
|
|
@@ -2182,6 +2420,83 @@
|
|
|
2182
2420
|
],
|
|
2183
2421
|
"example": "const hero = jux.hero('myHero', {"
|
|
2184
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
|
+
},
|
|
2185
2500
|
{
|
|
2186
2501
|
"name": "Include",
|
|
2187
2502
|
"category": "UI Components",
|
|
@@ -2230,6 +2545,12 @@
|
|
|
2230
2545
|
"returns": "this",
|
|
2231
2546
|
"description": "Set withPrefetch"
|
|
2232
2547
|
},
|
|
2548
|
+
{
|
|
2549
|
+
"name": "withJson",
|
|
2550
|
+
"params": "()",
|
|
2551
|
+
"returns": "this",
|
|
2552
|
+
"description": "Set withJson"
|
|
2553
|
+
},
|
|
2233
2554
|
{
|
|
2234
2555
|
"name": "with",
|
|
2235
2556
|
"params": "(options)",
|
|
@@ -2285,7 +2606,7 @@
|
|
|
2285
2606
|
"description": "Set remove"
|
|
2286
2607
|
}
|
|
2287
2608
|
],
|
|
2288
|
-
"example": "jux.include('
|
|
2609
|
+
"example": "const config = await jux.include('config.json').asJson();"
|
|
2289
2610
|
},
|
|
2290
2611
|
{
|
|
2291
2612
|
"name": "Input",
|
|
@@ -2317,6 +2638,12 @@
|
|
|
2317
2638
|
"returns": "this",
|
|
2318
2639
|
"description": "Set label"
|
|
2319
2640
|
},
|
|
2641
|
+
{
|
|
2642
|
+
"name": "icon",
|
|
2643
|
+
"params": "(value)",
|
|
2644
|
+
"returns": "this",
|
|
2645
|
+
"description": "Set icon"
|
|
2646
|
+
},
|
|
2320
2647
|
{
|
|
2321
2648
|
"name": "required",
|
|
2322
2649
|
"params": "(value)",
|
|
@@ -2391,10 +2718,16 @@
|
|
|
2391
2718
|
},
|
|
2392
2719
|
{
|
|
2393
2720
|
"name": "bind",
|
|
2394
|
-
"params": "(
|
|
2721
|
+
"params": "(event, handler)",
|
|
2395
2722
|
"returns": "this",
|
|
2396
2723
|
"description": "Set bind"
|
|
2397
2724
|
},
|
|
2725
|
+
{
|
|
2726
|
+
"name": "sync",
|
|
2727
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2728
|
+
"returns": "this",
|
|
2729
|
+
"description": "Set sync"
|
|
2730
|
+
},
|
|
2398
2731
|
{
|
|
2399
2732
|
"name": "render",
|
|
2400
2733
|
"params": "(targetId?)",
|
|
@@ -2408,7 +2741,7 @@
|
|
|
2408
2741
|
"description": "Set renderTo"
|
|
2409
2742
|
}
|
|
2410
2743
|
],
|
|
2411
|
-
"example": "jux.input('
|
|
2744
|
+
"example": "jux.input('id').render()"
|
|
2412
2745
|
},
|
|
2413
2746
|
{
|
|
2414
2747
|
"name": "Kpicard",
|
|
@@ -2623,6 +2956,18 @@
|
|
|
2623
2956
|
"description": "Menu item configuration",
|
|
2624
2957
|
"constructor": "jux.menu(id: string, options: MenuOptions = {})",
|
|
2625
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
|
+
},
|
|
2626
2971
|
{
|
|
2627
2972
|
"name": "items",
|
|
2628
2973
|
"params": "(value)",
|
|
@@ -2728,6 +3073,18 @@
|
|
|
2728
3073
|
"returns": "this",
|
|
2729
3074
|
"description": "Set close"
|
|
2730
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
|
+
},
|
|
2731
3088
|
{
|
|
2732
3089
|
"name": "render",
|
|
2733
3090
|
"params": "(targetId?)",
|
|
@@ -2746,7 +3103,7 @@
|
|
|
2746
3103
|
{
|
|
2747
3104
|
"name": "Nav",
|
|
2748
3105
|
"category": "UI Components",
|
|
2749
|
-
"description": "
|
|
3106
|
+
"description": "Set active state on items based on current request path",
|
|
2750
3107
|
"constructor": "jux.nav(id: string, options: NavOptions = {})",
|
|
2751
3108
|
"fluentMethods": [
|
|
2752
3109
|
{
|
|
@@ -2761,12 +3118,24 @@
|
|
|
2761
3118
|
"returns": "this",
|
|
2762
3119
|
"description": "Set addItem"
|
|
2763
3120
|
},
|
|
3121
|
+
{
|
|
3122
|
+
"name": "brand",
|
|
3123
|
+
"params": "(value)",
|
|
3124
|
+
"returns": "this",
|
|
3125
|
+
"description": "Set brand"
|
|
3126
|
+
},
|
|
2764
3127
|
{
|
|
2765
3128
|
"name": "variant",
|
|
2766
3129
|
"params": "(value)",
|
|
2767
3130
|
"returns": "this",
|
|
2768
3131
|
"description": "Set variant"
|
|
2769
3132
|
},
|
|
3133
|
+
{
|
|
3134
|
+
"name": "sticky",
|
|
3135
|
+
"params": "(value)",
|
|
3136
|
+
"returns": "this",
|
|
3137
|
+
"description": "Set sticky"
|
|
3138
|
+
},
|
|
2770
3139
|
{
|
|
2771
3140
|
"name": "style",
|
|
2772
3141
|
"params": "(value)",
|
|
@@ -2779,6 +3148,18 @@
|
|
|
2779
3148
|
"returns": "this",
|
|
2780
3149
|
"description": "Set class"
|
|
2781
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
|
+
},
|
|
2782
3163
|
{
|
|
2783
3164
|
"name": "render",
|
|
2784
3165
|
"params": "(targetId?)",
|
|
@@ -2792,7 +3173,7 @@
|
|
|
2792
3173
|
"description": "Set renderTo"
|
|
2793
3174
|
}
|
|
2794
3175
|
],
|
|
2795
|
-
"example": "
|
|
3176
|
+
"example": "jux.nav('id').render()"
|
|
2796
3177
|
},
|
|
2797
3178
|
{
|
|
2798
3179
|
"name": "Paragraph",
|
|
@@ -2818,19 +3199,37 @@
|
|
|
2818
3199
|
"returns": "this",
|
|
2819
3200
|
"description": "Set style"
|
|
2820
3201
|
},
|
|
3202
|
+
{
|
|
3203
|
+
"name": "bind",
|
|
3204
|
+
"params": "(event, handler)",
|
|
3205
|
+
"returns": "this",
|
|
3206
|
+
"description": "Set bind"
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
"name": "sync",
|
|
3210
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3211
|
+
"returns": "this",
|
|
3212
|
+
"description": "Set sync"
|
|
3213
|
+
},
|
|
2821
3214
|
{
|
|
2822
3215
|
"name": "render",
|
|
2823
3216
|
"params": "(targetId?)",
|
|
2824
3217
|
"returns": "this",
|
|
2825
3218
|
"description": "Set render"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"name": "renderTo",
|
|
3222
|
+
"params": "(juxComponent)",
|
|
3223
|
+
"returns": "this",
|
|
3224
|
+
"description": "Set renderTo"
|
|
2826
3225
|
}
|
|
2827
3226
|
],
|
|
2828
|
-
"example": "jux.paragraph('
|
|
3227
|
+
"example": "jux.paragraph('id').render()"
|
|
2829
3228
|
},
|
|
2830
3229
|
{
|
|
2831
3230
|
"name": "Progress",
|
|
2832
3231
|
"category": "UI Components",
|
|
2833
|
-
"description": "Progress component
|
|
3232
|
+
"description": "Progress component",
|
|
2834
3233
|
"constructor": "jux.progress(id: string, options: ProgressOptions = {})",
|
|
2835
3234
|
"fluentMethods": [
|
|
2836
3235
|
{
|
|
@@ -2895,10 +3294,16 @@
|
|
|
2895
3294
|
},
|
|
2896
3295
|
{
|
|
2897
3296
|
"name": "bind",
|
|
2898
|
-
"params": "(
|
|
3297
|
+
"params": "(event, handler)",
|
|
2899
3298
|
"returns": "this",
|
|
2900
3299
|
"description": "Set bind"
|
|
2901
3300
|
},
|
|
3301
|
+
{
|
|
3302
|
+
"name": "sync",
|
|
3303
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3304
|
+
"returns": "this",
|
|
3305
|
+
"description": "Set sync"
|
|
3306
|
+
},
|
|
2902
3307
|
{
|
|
2903
3308
|
"name": "render",
|
|
2904
3309
|
"params": "(targetId?)",
|
|
@@ -2912,7 +3317,7 @@
|
|
|
2912
3317
|
"description": "Set renderTo"
|
|
2913
3318
|
}
|
|
2914
3319
|
],
|
|
2915
|
-
"example": "jux.progress('
|
|
3320
|
+
"example": "jux.progress('id').render()"
|
|
2916
3321
|
},
|
|
2917
3322
|
{
|
|
2918
3323
|
"name": "Radio",
|
|
@@ -2964,10 +3369,16 @@
|
|
|
2964
3369
|
},
|
|
2965
3370
|
{
|
|
2966
3371
|
"name": "bind",
|
|
2967
|
-
"params": "(
|
|
3372
|
+
"params": "(event, handler)",
|
|
2968
3373
|
"returns": "this",
|
|
2969
3374
|
"description": "Set bind"
|
|
2970
3375
|
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "sync",
|
|
3378
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3379
|
+
"returns": "this",
|
|
3380
|
+
"description": "Set sync"
|
|
3381
|
+
},
|
|
2971
3382
|
{
|
|
2972
3383
|
"name": "render",
|
|
2973
3384
|
"params": "(targetId?)",
|
|
@@ -2994,7 +3405,7 @@
|
|
|
2994
3405
|
{
|
|
2995
3406
|
"name": "Select",
|
|
2996
3407
|
"category": "UI Components",
|
|
2997
|
-
"description": "
|
|
3408
|
+
"description": "Bind event handler (stores for wiring in render)",
|
|
2998
3409
|
"constructor": "jux.select(id: string, options: SelectOptions = {})",
|
|
2999
3410
|
"fluentMethods": [
|
|
3000
3411
|
{
|
|
@@ -3053,10 +3464,16 @@
|
|
|
3053
3464
|
},
|
|
3054
3465
|
{
|
|
3055
3466
|
"name": "bind",
|
|
3056
|
-
"params": "(
|
|
3467
|
+
"params": "(event, handler)",
|
|
3057
3468
|
"returns": "this",
|
|
3058
3469
|
"description": "Set bind"
|
|
3059
3470
|
},
|
|
3471
|
+
{
|
|
3472
|
+
"name": "sync",
|
|
3473
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3474
|
+
"returns": "this",
|
|
3475
|
+
"description": "Set sync"
|
|
3476
|
+
},
|
|
3060
3477
|
{
|
|
3061
3478
|
"name": "render",
|
|
3062
3479
|
"params": "(targetId?)",
|
|
@@ -3075,15 +3492,9 @@
|
|
|
3075
3492
|
{
|
|
3076
3493
|
"name": "Sidebar",
|
|
3077
3494
|
"category": "UI Components",
|
|
3078
|
-
"description": "Sidebar component
|
|
3495
|
+
"description": "Sidebar component",
|
|
3079
3496
|
"constructor": "jux.sidebar(id: string, options: SidebarOptions = {})",
|
|
3080
3497
|
"fluentMethods": [
|
|
3081
|
-
{
|
|
3082
|
-
"name": "title",
|
|
3083
|
-
"params": "(value)",
|
|
3084
|
-
"returns": "this",
|
|
3085
|
-
"description": "Set title"
|
|
3086
|
-
},
|
|
3087
3498
|
{
|
|
3088
3499
|
"name": "width",
|
|
3089
3500
|
"params": "(value)",
|
|
@@ -3121,10 +3532,16 @@
|
|
|
3121
3532
|
"description": "Set class"
|
|
3122
3533
|
},
|
|
3123
3534
|
{
|
|
3124
|
-
"name": "
|
|
3125
|
-
"params": "()",
|
|
3535
|
+
"name": "bind",
|
|
3536
|
+
"params": "(event, handler)",
|
|
3126
3537
|
"returns": "this",
|
|
3127
|
-
"description": "Set
|
|
3538
|
+
"description": "Set bind"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"name": "sync",
|
|
3542
|
+
"params": "(property, stateObj, transform?)",
|
|
3543
|
+
"returns": "this",
|
|
3544
|
+
"description": "Set sync"
|
|
3128
3545
|
},
|
|
3129
3546
|
{
|
|
3130
3547
|
"name": "render",
|
|
@@ -3139,20 +3556,14 @@
|
|
|
3139
3556
|
"description": "Set renderTo"
|
|
3140
3557
|
}
|
|
3141
3558
|
],
|
|
3142
|
-
"example": "
|
|
3559
|
+
"example": "jux.sidebar('id').render()"
|
|
3143
3560
|
},
|
|
3144
3561
|
{
|
|
3145
3562
|
"name": "Switch",
|
|
3146
3563
|
"category": "UI Components",
|
|
3147
|
-
"description": "
|
|
3564
|
+
"description": "Bind event handler (stores for wiring in render)",
|
|
3148
3565
|
"constructor": "jux.switch(id: string, options: SwitchOptions = {})",
|
|
3149
3566
|
"fluentMethods": [
|
|
3150
|
-
{
|
|
3151
|
-
"name": "label",
|
|
3152
|
-
"params": "(value)",
|
|
3153
|
-
"returns": "this",
|
|
3154
|
-
"description": "Set label"
|
|
3155
|
-
},
|
|
3156
3567
|
{
|
|
3157
3568
|
"name": "checked",
|
|
3158
3569
|
"params": "(value)",
|
|
@@ -3160,10 +3571,10 @@
|
|
|
3160
3571
|
"description": "Set checked"
|
|
3161
3572
|
},
|
|
3162
3573
|
{
|
|
3163
|
-
"name": "
|
|
3574
|
+
"name": "label",
|
|
3164
3575
|
"params": "(value)",
|
|
3165
3576
|
"returns": "this",
|
|
3166
|
-
"description": "Set
|
|
3577
|
+
"description": "Set label"
|
|
3167
3578
|
},
|
|
3168
3579
|
{
|
|
3169
3580
|
"name": "name",
|
|
@@ -3171,6 +3582,12 @@
|
|
|
3171
3582
|
"returns": "this",
|
|
3172
3583
|
"description": "Set name"
|
|
3173
3584
|
},
|
|
3585
|
+
{
|
|
3586
|
+
"name": "disabled",
|
|
3587
|
+
"params": "(value)",
|
|
3588
|
+
"returns": "this",
|
|
3589
|
+
"description": "Set disabled"
|
|
3590
|
+
},
|
|
3174
3591
|
{
|
|
3175
3592
|
"name": "style",
|
|
3176
3593
|
"params": "(value)",
|
|
@@ -3185,15 +3602,15 @@
|
|
|
3185
3602
|
},
|
|
3186
3603
|
{
|
|
3187
3604
|
"name": "bind",
|
|
3188
|
-
"params": "(
|
|
3605
|
+
"params": "(event, handler)",
|
|
3189
3606
|
"returns": "this",
|
|
3190
3607
|
"description": "Set bind"
|
|
3191
3608
|
},
|
|
3192
3609
|
{
|
|
3193
|
-
"name": "
|
|
3194
|
-
"params": "()",
|
|
3610
|
+
"name": "sync",
|
|
3611
|
+
"params": "(property, stateObj, toState?, toComponent?)",
|
|
3195
3612
|
"returns": "this",
|
|
3196
|
-
"description": "Set
|
|
3613
|
+
"description": "Set sync"
|
|
3197
3614
|
},
|
|
3198
3615
|
{
|
|
3199
3616
|
"name": "render",
|
|
@@ -3208,12 +3625,12 @@
|
|
|
3208
3625
|
"description": "Set renderTo"
|
|
3209
3626
|
}
|
|
3210
3627
|
],
|
|
3211
|
-
"example": "jux.switch('
|
|
3628
|
+
"example": "jux.switch('id').render()"
|
|
3212
3629
|
},
|
|
3213
3630
|
{
|
|
3214
3631
|
"name": "Tabs",
|
|
3215
3632
|
"category": "UI Components",
|
|
3216
|
-
"description": "
|
|
3633
|
+
"description": "Tabs component",
|
|
3217
3634
|
"constructor": "jux.tabs(id: string, options: TabsOptions = {})",
|
|
3218
3635
|
"fluentMethods": [
|
|
3219
3636
|
{
|
|
@@ -3234,6 +3651,12 @@
|
|
|
3234
3651
|
"returns": "this",
|
|
3235
3652
|
"description": "Set activeTab"
|
|
3236
3653
|
},
|
|
3654
|
+
{
|
|
3655
|
+
"name": "variant",
|
|
3656
|
+
"params": "(value)",
|
|
3657
|
+
"returns": "this",
|
|
3658
|
+
"description": "Set variant"
|
|
3659
|
+
},
|
|
3237
3660
|
{
|
|
3238
3661
|
"name": "style",
|
|
3239
3662
|
"params": "(value)",
|
|
@@ -3246,6 +3669,18 @@
|
|
|
3246
3669
|
"returns": "this",
|
|
3247
3670
|
"description": "Set class"
|
|
3248
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
|
+
},
|
|
3249
3684
|
{
|
|
3250
3685
|
"name": "render",
|
|
3251
3686
|
"params": "(targetId?)",
|
|
@@ -3259,7 +3694,7 @@
|
|
|
3259
3694
|
"description": "Set renderTo"
|
|
3260
3695
|
}
|
|
3261
3696
|
],
|
|
3262
|
-
"example": "
|
|
3697
|
+
"example": "jux.tabs('id').render()"
|
|
3263
3698
|
},
|
|
3264
3699
|
{
|
|
3265
3700
|
"name": "Theme-toggle",
|
|
@@ -3384,7 +3819,7 @@
|
|
|
3384
3819
|
{
|
|
3385
3820
|
"name": "Tooltip",
|
|
3386
3821
|
"category": "UI Components",
|
|
3387
|
-
"description": "
|
|
3822
|
+
"description": "Attach tooltip to an element",
|
|
3388
3823
|
"constructor": "jux.tooltip(id: string, options: TooltipOptions = {})",
|
|
3389
3824
|
"fluentMethods": [
|
|
3390
3825
|
{
|
|
@@ -3417,6 +3852,18 @@
|
|
|
3417
3852
|
"returns": "this",
|
|
3418
3853
|
"description": "Set class"
|
|
3419
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
|
+
},
|
|
3420
3867
|
{
|
|
3421
3868
|
"name": "attachTo",
|
|
3422
3869
|
"params": "(target)",
|
|
@@ -3436,7 +3883,7 @@
|
|
|
3436
3883
|
"description": "Set renderTo"
|
|
3437
3884
|
}
|
|
3438
3885
|
],
|
|
3439
|
-
"example": "
|
|
3886
|
+
"example": "jux.tooltip('id').render()"
|
|
3440
3887
|
},
|
|
3441
3888
|
{
|
|
3442
3889
|
"name": "View",
|
|
@@ -3518,5 +3965,5 @@
|
|
|
3518
3965
|
}
|
|
3519
3966
|
],
|
|
3520
3967
|
"version": "1.0.0",
|
|
3521
|
-
"lastUpdated": "2026-01-
|
|
3968
|
+
"lastUpdated": "2026-01-23T20:33:28.828Z"
|
|
3522
3969
|
}
|