juxscript 1.0.19 → 1.0.21
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/bin/cli.js +121 -72
- package/lib/components/alert.ts +212 -165
- package/lib/components/badge.ts +93 -103
- package/lib/components/base/BaseComponent.ts +397 -0
- package/lib/components/base/FormInput.ts +322 -0
- package/lib/components/button.ts +63 -122
- package/lib/components/card.ts +109 -155
- package/lib/components/charts/areachart.ts +315 -0
- package/lib/components/charts/barchart.ts +421 -0
- package/lib/components/charts/doughnutchart.ts +263 -0
- package/lib/components/charts/lib/BaseChart.ts +402 -0
- package/lib/components/charts/lib/chart-types.ts +159 -0
- package/lib/components/charts/lib/chart-utils.ts +160 -0
- package/lib/components/charts/lib/chart.ts +707 -0
- package/lib/components/checkbox.ts +264 -127
- package/lib/components/code.ts +75 -108
- package/lib/components/container.ts +113 -130
- package/lib/components/data.ts +37 -5
- package/lib/components/datepicker.ts +195 -147
- package/lib/components/dialog.ts +187 -157
- package/lib/components/divider.ts +85 -191
- package/lib/components/docs-data.json +544 -2027
- package/lib/components/dropdown.ts +178 -136
- package/lib/components/element.ts +227 -171
- package/lib/components/fileupload.ts +285 -228
- package/lib/components/guard.ts +92 -0
- package/lib/components/heading.ts +46 -69
- package/lib/components/helpers.ts +13 -6
- package/lib/components/hero.ts +107 -95
- package/lib/components/icon.ts +160 -0
- package/lib/components/icons.ts +175 -0
- package/lib/components/include.ts +153 -5
- package/lib/components/input.ts +174 -374
- package/lib/components/kpicard.ts +16 -16
- package/lib/components/list.ts +378 -240
- package/lib/components/loading.ts +142 -211
- package/lib/components/menu.ts +103 -97
- package/lib/components/modal.ts +138 -144
- package/lib/components/nav.ts +169 -90
- package/lib/components/paragraph.ts +49 -150
- package/lib/components/progress.ts +118 -200
- package/lib/components/radio.ts +297 -149
- package/lib/components/script.ts +19 -87
- package/lib/components/select.ts +184 -186
- package/lib/components/sidebar.ts +152 -140
- package/lib/components/style.ts +19 -82
- package/lib/components/switch.ts +258 -188
- package/lib/components/table.ts +1117 -170
- package/lib/components/tabs.ts +162 -145
- package/lib/components/theme-toggle.ts +108 -169
- package/lib/components/tooltip.ts +86 -157
- package/lib/components/write.ts +108 -127
- package/lib/jux.ts +86 -41
- package/machinery/build.js +466 -0
- package/machinery/compiler.js +354 -105
- package/machinery/server.js +23 -100
- package/machinery/watcher.js +153 -130
- package/package.json +1 -2
- package/presets/base.css +1166 -0
- package/presets/notion.css +2 -1975
- package/lib/adapters/base-adapter.js +0 -35
- package/lib/adapters/index.js +0 -33
- package/lib/adapters/mysql-adapter.js +0 -65
- package/lib/adapters/postgres-adapter.js +0 -70
- package/lib/adapters/sqlite-adapter.js +0 -56
- package/lib/components/areachart.ts +0 -1246
- package/lib/components/areachartsmooth.ts +0 -1380
- package/lib/components/barchart.ts +0 -1250
- package/lib/components/chart.ts +0 -127
- package/lib/components/doughnutchart.ts +0 -1191
- package/lib/components/footer.ts +0 -165
- package/lib/components/header.ts +0 -187
- package/lib/components/layout.ts +0 -239
- package/lib/components/main.ts +0 -137
- package/lib/layouts/default.jux +0 -8
- package/lib/layouts/figma.jux +0 -0
- /package/lib/{themes → components/charts/lib}/charts.js +0 -0
|
@@ -57,162 +57,48 @@
|
|
|
57
57
|
],
|
|
58
58
|
"example": "jux.app('myApp').setup({"
|
|
59
59
|
},
|
|
60
|
-
{
|
|
61
|
-
"name": "Layout",
|
|
62
|
-
"category": "Core",
|
|
63
|
-
"description": "Layout component interface",
|
|
64
|
-
"constructor": "jux.layout(...args: any[])",
|
|
65
|
-
"fluentMethods": [
|
|
66
|
-
{
|
|
67
|
-
"name": "file",
|
|
68
|
-
"params": "(juxFile)",
|
|
69
|
-
"returns": "this",
|
|
70
|
-
"description": "Set file"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "add",
|
|
74
|
-
"params": "(component)",
|
|
75
|
-
"returns": "this",
|
|
76
|
-
"description": "Set add"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "render",
|
|
80
|
-
"params": "(target?)",
|
|
81
|
-
"returns": "this",
|
|
82
|
-
"description": "Set render"
|
|
83
|
-
}
|
|
84
|
-
],
|
|
85
|
-
"example": "// As a composition function"
|
|
86
|
-
},
|
|
87
60
|
{
|
|
88
61
|
"name": "Script",
|
|
89
62
|
"category": "Core",
|
|
90
63
|
"description": "Script - Inject inline JavaScript into the document",
|
|
91
|
-
"constructor": "jux.script(
|
|
64
|
+
"constructor": "jux.script(code: string, id?: string)",
|
|
92
65
|
"fluentMethods": [
|
|
93
|
-
{
|
|
94
|
-
"name": "content",
|
|
95
|
-
"params": "(js)",
|
|
96
|
-
"returns": "this",
|
|
97
|
-
"description": "Set content"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"name": "type",
|
|
101
|
-
"params": "(value)",
|
|
102
|
-
"returns": "this",
|
|
103
|
-
"description": "Set type"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"name": "module",
|
|
107
|
-
"params": "()",
|
|
108
|
-
"returns": "this",
|
|
109
|
-
"description": "Set module"
|
|
110
|
-
},
|
|
111
66
|
{
|
|
112
67
|
"name": "render",
|
|
113
68
|
"params": "()",
|
|
114
69
|
"returns": "this",
|
|
115
70
|
"description": "Set render"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"name": "remove",
|
|
119
|
-
"params": "()",
|
|
120
|
-
"returns": "this",
|
|
121
|
-
"description": "Set remove"
|
|
122
71
|
}
|
|
123
72
|
],
|
|
124
|
-
"example": "jux.script('
|
|
73
|
+
"example": "jux.script('id').render()"
|
|
125
74
|
},
|
|
126
75
|
{
|
|
127
76
|
"name": "Style",
|
|
128
77
|
"category": "Core",
|
|
129
78
|
"description": "Style - Inject inline CSS into the document",
|
|
130
|
-
"constructor": "jux.style(
|
|
79
|
+
"constructor": "jux.style(css: string, id?: string)",
|
|
131
80
|
"fluentMethods": [
|
|
132
|
-
{
|
|
133
|
-
"name": "content",
|
|
134
|
-
"params": "(css)",
|
|
135
|
-
"returns": "this",
|
|
136
|
-
"description": "Set content"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"name": "append",
|
|
140
|
-
"params": "(css)",
|
|
141
|
-
"returns": "this",
|
|
142
|
-
"description": "Set append"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"name": "prepend",
|
|
146
|
-
"params": "(css)",
|
|
147
|
-
"returns": "this",
|
|
148
|
-
"description": "Set prepend"
|
|
149
|
-
},
|
|
150
81
|
{
|
|
151
82
|
"name": "render",
|
|
152
83
|
"params": "()",
|
|
153
84
|
"returns": "this",
|
|
154
85
|
"description": "Set render"
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"name": "remove",
|
|
158
|
-
"params": "()",
|
|
159
|
-
"returns": "this",
|
|
160
|
-
"description": "Set remove"
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"example": "jux.style('body { margin: 0; }');"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"name": "Chart",
|
|
167
|
-
"category": "Data Components",
|
|
168
|
-
"description": "Chart component options",
|
|
169
|
-
"constructor": "jux.chart(id: string, options: ChartOptions = {})",
|
|
170
|
-
"fluentMethods": [
|
|
171
|
-
{
|
|
172
|
-
"name": "type",
|
|
173
|
-
"params": "(value)",
|
|
174
|
-
"returns": "this",
|
|
175
|
-
"description": "Set type"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"name": "data",
|
|
179
|
-
"params": "(value)",
|
|
180
|
-
"returns": "this",
|
|
181
|
-
"description": "Set data"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"name": "options",
|
|
185
|
-
"params": "(value)",
|
|
186
|
-
"returns": "this",
|
|
187
|
-
"description": "Set options"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"name": "render",
|
|
191
|
-
"params": "(targetId?)",
|
|
192
|
-
"returns": "this",
|
|
193
|
-
"description": "Set render"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"name": "renderTo",
|
|
197
|
-
"params": "(juxComponent)",
|
|
198
|
-
"returns": "this",
|
|
199
|
-
"description": "Set renderTo"
|
|
200
86
|
}
|
|
201
87
|
],
|
|
202
|
-
"example": "
|
|
88
|
+
"example": "jux.style('id').render()"
|
|
203
89
|
},
|
|
204
90
|
{
|
|
205
91
|
"name": "Data",
|
|
206
92
|
"category": "Data Components",
|
|
207
93
|
"description": "Data component - SQL query execution",
|
|
208
|
-
"constructor": "
|
|
94
|
+
"constructor": "new Data()",
|
|
209
95
|
"fluentMethods": [],
|
|
210
96
|
"example": "const posts = jux.data('SELECT * FROM posts WHERE id = ?', [1]);"
|
|
211
97
|
},
|
|
212
98
|
{
|
|
213
99
|
"name": "List",
|
|
214
100
|
"category": "Data Components",
|
|
215
|
-
"description": "List
|
|
101
|
+
"description": "List component",
|
|
216
102
|
"constructor": "jux.list(id: string, options: ListOptions = {})",
|
|
217
103
|
"fluentMethods": [
|
|
218
104
|
{
|
|
@@ -222,22 +108,40 @@
|
|
|
222
108
|
"description": "Set items"
|
|
223
109
|
},
|
|
224
110
|
{
|
|
225
|
-
"name": "
|
|
111
|
+
"name": "addItem",
|
|
226
112
|
"params": "(value)",
|
|
227
113
|
"returns": "this",
|
|
228
|
-
"description": "Set
|
|
114
|
+
"description": "Set addItem"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "removeItem",
|
|
118
|
+
"params": "(index)",
|
|
119
|
+
"returns": "this",
|
|
120
|
+
"description": "Set removeItem"
|
|
229
121
|
},
|
|
230
122
|
{
|
|
231
|
-
"name": "
|
|
232
|
-
"params": "(
|
|
123
|
+
"name": "updateItem",
|
|
124
|
+
"params": "(index, updates)",
|
|
233
125
|
"returns": "this",
|
|
234
|
-
"description": "Set
|
|
126
|
+
"description": "Set updateItem"
|
|
235
127
|
},
|
|
236
128
|
{
|
|
237
|
-
"name": "
|
|
129
|
+
"name": "clearItems",
|
|
130
|
+
"params": "()",
|
|
131
|
+
"returns": "this",
|
|
132
|
+
"description": "Set clearItems"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "itemClass",
|
|
136
|
+
"params": "(className)",
|
|
137
|
+
"returns": "this",
|
|
138
|
+
"description": "Set itemClass"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "ordered",
|
|
238
142
|
"params": "(value)",
|
|
239
143
|
"returns": "this",
|
|
240
|
-
"description": "Set
|
|
144
|
+
"description": "Set ordered"
|
|
241
145
|
},
|
|
242
146
|
{
|
|
243
147
|
"name": "selectable",
|
|
@@ -246,79 +150,79 @@
|
|
|
246
150
|
"description": "Set selectable"
|
|
247
151
|
},
|
|
248
152
|
{
|
|
249
|
-
"name": "
|
|
153
|
+
"name": "multiSelect",
|
|
250
154
|
"params": "(value)",
|
|
251
155
|
"returns": "this",
|
|
252
|
-
"description": "Set
|
|
156
|
+
"description": "Set multiSelect"
|
|
253
157
|
},
|
|
254
158
|
{
|
|
255
|
-
"name": "
|
|
159
|
+
"name": "striped",
|
|
256
160
|
"params": "(value)",
|
|
257
161
|
"returns": "this",
|
|
258
|
-
"description": "Set
|
|
162
|
+
"description": "Set striped"
|
|
259
163
|
},
|
|
260
164
|
{
|
|
261
|
-
"name": "
|
|
262
|
-
"params": "(
|
|
165
|
+
"name": "hoverable",
|
|
166
|
+
"params": "(value)",
|
|
263
167
|
"returns": "this",
|
|
264
|
-
"description": "Set
|
|
168
|
+
"description": "Set hoverable"
|
|
265
169
|
},
|
|
266
170
|
{
|
|
267
|
-
"name": "
|
|
268
|
-
"params": "(
|
|
171
|
+
"name": "bordered",
|
|
172
|
+
"params": "(value)",
|
|
269
173
|
"returns": "this",
|
|
270
|
-
"description": "Set
|
|
174
|
+
"description": "Set bordered"
|
|
271
175
|
},
|
|
272
176
|
{
|
|
273
|
-
"name": "
|
|
274
|
-
"params": "(
|
|
177
|
+
"name": "selectItem",
|
|
178
|
+
"params": "(index)",
|
|
275
179
|
"returns": "this",
|
|
276
|
-
"description": "Set
|
|
180
|
+
"description": "Set selectItem"
|
|
277
181
|
},
|
|
278
182
|
{
|
|
279
|
-
"name": "
|
|
183
|
+
"name": "deselectItem",
|
|
280
184
|
"params": "(index)",
|
|
281
185
|
"returns": "this",
|
|
282
|
-
"description": "Set
|
|
186
|
+
"description": "Set deselectItem"
|
|
283
187
|
},
|
|
284
188
|
{
|
|
285
|
-
"name": "
|
|
189
|
+
"name": "clearSelection",
|
|
286
190
|
"params": "()",
|
|
287
191
|
"returns": "this",
|
|
288
|
-
"description": "Set
|
|
192
|
+
"description": "Set clearSelection"
|
|
289
193
|
},
|
|
290
194
|
{
|
|
291
195
|
"name": "render",
|
|
292
196
|
"params": "(targetId?)",
|
|
293
197
|
"returns": "this",
|
|
294
198
|
"description": "Set render"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"name": "renderTo",
|
|
298
|
-
"params": "(juxComponent)",
|
|
299
|
-
"returns": "this",
|
|
300
|
-
"description": "Set renderTo"
|
|
301
199
|
}
|
|
302
200
|
],
|
|
303
|
-
"example": "
|
|
201
|
+
"example": "jux.list('id').render()"
|
|
304
202
|
},
|
|
305
203
|
{
|
|
306
204
|
"name": "Table",
|
|
307
205
|
"category": "Data Components",
|
|
308
|
-
"description": "
|
|
206
|
+
"description": "Add a computed column that evaluates dynamically at render time",
|
|
309
207
|
"constructor": "jux.table(id: string, options: TableOptions = {})",
|
|
310
208
|
"fluentMethods": [
|
|
311
209
|
{
|
|
312
|
-
"name": "
|
|
210
|
+
"name": "rows",
|
|
313
211
|
"params": "(value)",
|
|
314
212
|
"returns": "this",
|
|
315
|
-
"description": "Set
|
|
213
|
+
"description": "Set rows"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "removeComputedColumn",
|
|
217
|
+
"params": "(key)",
|
|
218
|
+
"returns": "this",
|
|
219
|
+
"description": "Set removeComputedColumn"
|
|
316
220
|
},
|
|
317
221
|
{
|
|
318
|
-
"name": "
|
|
222
|
+
"name": "headers",
|
|
319
223
|
"params": "(value)",
|
|
320
224
|
"returns": "this",
|
|
321
|
-
"description": "Set
|
|
225
|
+
"description": "Set headers"
|
|
322
226
|
},
|
|
323
227
|
{
|
|
324
228
|
"name": "striped",
|
|
@@ -339,91 +243,94 @@
|
|
|
339
243
|
"description": "Set bordered"
|
|
340
244
|
},
|
|
341
245
|
{
|
|
342
|
-
"name": "
|
|
246
|
+
"name": "compact",
|
|
343
247
|
"params": "(value)",
|
|
344
248
|
"returns": "this",
|
|
345
|
-
"description": "Set
|
|
249
|
+
"description": "Set compact"
|
|
346
250
|
},
|
|
347
251
|
{
|
|
348
|
-
"name": "
|
|
252
|
+
"name": "sortable",
|
|
349
253
|
"params": "(value)",
|
|
350
254
|
"returns": "this",
|
|
351
|
-
"description": "Set
|
|
255
|
+
"description": "Set sortable"
|
|
352
256
|
},
|
|
353
257
|
{
|
|
354
|
-
"name": "
|
|
258
|
+
"name": "filterable",
|
|
355
259
|
"params": "(value)",
|
|
356
260
|
"returns": "this",
|
|
357
|
-
"description": "Set
|
|
261
|
+
"description": "Set filterable"
|
|
358
262
|
},
|
|
359
263
|
{
|
|
360
|
-
"name": "
|
|
361
|
-
"params": "(
|
|
264
|
+
"name": "paginated",
|
|
265
|
+
"params": "(value)",
|
|
362
266
|
"returns": "this",
|
|
363
|
-
"description": "Set
|
|
267
|
+
"description": "Set paginated"
|
|
364
268
|
},
|
|
365
269
|
{
|
|
366
|
-
"name": "
|
|
367
|
-
"params": "(
|
|
270
|
+
"name": "rowsPerPage",
|
|
271
|
+
"params": "(value)",
|
|
368
272
|
"returns": "this",
|
|
369
|
-
"description": "Set
|
|
370
|
-
}
|
|
371
|
-
],
|
|
372
|
-
"example": "// Auto-generate columns from data"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"name": "Alert",
|
|
376
|
-
"category": "UI Components",
|
|
377
|
-
"description": "Alert component options",
|
|
378
|
-
"constructor": "jux.alert(id: string, options: AlertOptions = {})",
|
|
379
|
-
"fluentMethods": [
|
|
273
|
+
"description": "Set rowsPerPage"
|
|
274
|
+
},
|
|
380
275
|
{
|
|
381
|
-
"name": "
|
|
276
|
+
"name": "selectable",
|
|
382
277
|
"params": "(value)",
|
|
383
278
|
"returns": "this",
|
|
384
|
-
"description": "Set
|
|
279
|
+
"description": "Set selectable"
|
|
385
280
|
},
|
|
386
281
|
{
|
|
387
|
-
"name": "
|
|
282
|
+
"name": "multiSelect",
|
|
388
283
|
"params": "(value)",
|
|
389
284
|
"returns": "this",
|
|
390
|
-
"description": "Set
|
|
285
|
+
"description": "Set multiSelect"
|
|
391
286
|
},
|
|
392
287
|
{
|
|
393
|
-
"name": "
|
|
288
|
+
"name": "showCheckboxes",
|
|
394
289
|
"params": "(value)",
|
|
395
290
|
"returns": "this",
|
|
396
|
-
"description": "Set
|
|
291
|
+
"description": "Set showCheckboxes"
|
|
397
292
|
},
|
|
398
293
|
{
|
|
399
|
-
"name": "
|
|
294
|
+
"name": "showBulkCheckbox",
|
|
400
295
|
"params": "(value)",
|
|
401
296
|
"returns": "this",
|
|
402
|
-
"description": "Set
|
|
297
|
+
"description": "Set showBulkCheckbox"
|
|
403
298
|
},
|
|
404
299
|
{
|
|
405
|
-
"name": "
|
|
300
|
+
"name": "selectionTrigger",
|
|
406
301
|
"params": "(value)",
|
|
407
302
|
"returns": "this",
|
|
408
|
-
"description": "Set
|
|
303
|
+
"description": "Set selectionTrigger"
|
|
409
304
|
},
|
|
410
305
|
{
|
|
411
|
-
"name": "
|
|
412
|
-
"params": "(
|
|
306
|
+
"name": "selectAll",
|
|
307
|
+
"params": "()",
|
|
413
308
|
"returns": "this",
|
|
414
|
-
"description": "Set
|
|
309
|
+
"description": "Set selectAll"
|
|
415
310
|
},
|
|
416
311
|
{
|
|
417
|
-
"name": "
|
|
418
|
-
"params": "(
|
|
312
|
+
"name": "deselectAll",
|
|
313
|
+
"params": "()",
|
|
419
314
|
"returns": "this",
|
|
420
|
-
"description": "Set
|
|
315
|
+
"description": "Set deselectAll"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "clearSelection",
|
|
319
|
+
"params": "()",
|
|
320
|
+
"returns": "this",
|
|
321
|
+
"description": "Set clearSelection"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"name": "selectRows",
|
|
325
|
+
"params": "(indexes)",
|
|
326
|
+
"returns": "this",
|
|
327
|
+
"description": "Set selectRows"
|
|
421
328
|
},
|
|
422
329
|
{
|
|
423
|
-
"name": "
|
|
424
|
-
"params": "(
|
|
330
|
+
"name": "deselectRows",
|
|
331
|
+
"params": "(indexes)",
|
|
425
332
|
"returns": "this",
|
|
426
|
-
"description": "Set
|
|
333
|
+
"description": "Set deselectRows"
|
|
427
334
|
},
|
|
428
335
|
{
|
|
429
336
|
"name": "render",
|
|
@@ -438,193 +345,133 @@
|
|
|
438
345
|
"description": "Set renderTo"
|
|
439
346
|
}
|
|
440
347
|
],
|
|
441
|
-
"example": "jux.
|
|
348
|
+
"example": "jux.table('id').render()"
|
|
442
349
|
},
|
|
443
350
|
{
|
|
444
|
-
"name": "
|
|
351
|
+
"name": "Alert",
|
|
445
352
|
"category": "UI Components",
|
|
446
|
-
"description": "
|
|
447
|
-
"constructor": "jux.
|
|
353
|
+
"description": "Alert component",
|
|
354
|
+
"constructor": "jux.alert(id: string, options: AlertOptions = {})",
|
|
448
355
|
"fluentMethods": [
|
|
449
356
|
{
|
|
450
|
-
"name": "
|
|
451
|
-
"params": "(
|
|
452
|
-
"returns": "this",
|
|
453
|
-
"description": "Set bindTheme"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"name": "bindStyleMode",
|
|
457
|
-
"params": "(stateObj)",
|
|
357
|
+
"name": "message",
|
|
358
|
+
"params": "(value)",
|
|
458
359
|
"returns": "this",
|
|
459
|
-
"description": "Set
|
|
360
|
+
"description": "Set message"
|
|
460
361
|
},
|
|
461
362
|
{
|
|
462
|
-
"name": "
|
|
463
|
-
"params": "(
|
|
363
|
+
"name": "type",
|
|
364
|
+
"params": "(value)",
|
|
464
365
|
"returns": "this",
|
|
465
|
-
"description": "Set
|
|
366
|
+
"description": "Set type"
|
|
466
367
|
},
|
|
467
368
|
{
|
|
468
|
-
"name": "
|
|
369
|
+
"name": "dismissible",
|
|
469
370
|
"params": "(value)",
|
|
470
371
|
"returns": "this",
|
|
471
|
-
"description": "Set
|
|
372
|
+
"description": "Set dismissible"
|
|
472
373
|
},
|
|
473
374
|
{
|
|
474
|
-
"name": "
|
|
375
|
+
"name": "icon",
|
|
475
376
|
"params": "(value)",
|
|
476
377
|
"returns": "this",
|
|
477
|
-
"description": "Set
|
|
378
|
+
"description": "Set icon"
|
|
478
379
|
},
|
|
479
380
|
{
|
|
480
|
-
"name": "
|
|
481
|
-
"params": "(
|
|
381
|
+
"name": "render",
|
|
382
|
+
"params": "(targetId?)",
|
|
482
383
|
"returns": "this",
|
|
483
|
-
"description": "Set
|
|
484
|
-
}
|
|
384
|
+
"description": "Set render"
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"example": "jux.alert('id').render()"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "Badge",
|
|
391
|
+
"category": "UI Components",
|
|
392
|
+
"description": "Badge component",
|
|
393
|
+
"constructor": "jux.badge(id: string, options: BadgeOptions = {})",
|
|
394
|
+
"fluentMethods": [
|
|
485
395
|
{
|
|
486
|
-
"name": "
|
|
396
|
+
"name": "text",
|
|
487
397
|
"params": "(value)",
|
|
488
398
|
"returns": "this",
|
|
489
|
-
"description": "Set
|
|
399
|
+
"description": "Set text"
|
|
490
400
|
},
|
|
491
401
|
{
|
|
492
|
-
"name": "
|
|
402
|
+
"name": "variant",
|
|
493
403
|
"params": "(value)",
|
|
494
404
|
"returns": "this",
|
|
495
|
-
"description": "Set
|
|
405
|
+
"description": "Set variant"
|
|
496
406
|
},
|
|
497
407
|
{
|
|
498
|
-
"name": "
|
|
408
|
+
"name": "pill",
|
|
499
409
|
"params": "(value)",
|
|
500
410
|
"returns": "this",
|
|
501
|
-
"description": "Set
|
|
411
|
+
"description": "Set pill"
|
|
502
412
|
},
|
|
503
413
|
{
|
|
504
|
-
"name": "
|
|
505
|
-
"params": "(
|
|
414
|
+
"name": "render",
|
|
415
|
+
"params": "(targetId?)",
|
|
506
416
|
"returns": "this",
|
|
507
|
-
"description": "Set
|
|
508
|
-
}
|
|
417
|
+
"description": "Set render"
|
|
418
|
+
}
|
|
419
|
+
],
|
|
420
|
+
"example": "jux.badge('id').render()"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "Button",
|
|
424
|
+
"category": "UI Components",
|
|
425
|
+
"description": "Override visible() to update the actual button element",
|
|
426
|
+
"constructor": "jux.button(id: string, options?: ButtonOptions)",
|
|
427
|
+
"fluentMethods": [
|
|
509
428
|
{
|
|
510
|
-
"name": "
|
|
429
|
+
"name": "label",
|
|
511
430
|
"params": "(value)",
|
|
512
431
|
"returns": "this",
|
|
513
|
-
"description": "Set
|
|
432
|
+
"description": "Set label"
|
|
514
433
|
},
|
|
515
434
|
{
|
|
516
|
-
"name": "
|
|
435
|
+
"name": "icon",
|
|
517
436
|
"params": "(value)",
|
|
518
437
|
"returns": "this",
|
|
519
|
-
"description": "Set
|
|
438
|
+
"description": "Set icon"
|
|
520
439
|
},
|
|
521
440
|
{
|
|
522
|
-
"name": "
|
|
441
|
+
"name": "variant",
|
|
523
442
|
"params": "(value)",
|
|
524
443
|
"returns": "this",
|
|
525
|
-
"description": "Set
|
|
444
|
+
"description": "Set variant"
|
|
526
445
|
},
|
|
527
446
|
{
|
|
528
|
-
"name": "
|
|
447
|
+
"name": "size",
|
|
529
448
|
"params": "(value)",
|
|
530
449
|
"returns": "this",
|
|
531
|
-
"description": "Set
|
|
450
|
+
"description": "Set size"
|
|
532
451
|
},
|
|
533
452
|
{
|
|
534
|
-
"name": "
|
|
453
|
+
"name": "iconPosition",
|
|
535
454
|
"params": "(value)",
|
|
536
455
|
"returns": "this",
|
|
537
|
-
"description": "Set
|
|
456
|
+
"description": "Set iconPosition"
|
|
538
457
|
},
|
|
539
458
|
{
|
|
540
|
-
"name": "
|
|
459
|
+
"name": "fullWidth",
|
|
541
460
|
"params": "(value)",
|
|
542
461
|
"returns": "this",
|
|
543
|
-
"description": "Set
|
|
462
|
+
"description": "Set fullWidth"
|
|
544
463
|
},
|
|
545
464
|
{
|
|
546
|
-
"name": "
|
|
465
|
+
"name": "type",
|
|
547
466
|
"params": "(value)",
|
|
548
467
|
"returns": "this",
|
|
549
|
-
"description": "Set
|
|
468
|
+
"description": "Set type"
|
|
550
469
|
},
|
|
551
470
|
{
|
|
552
|
-
"name": "
|
|
471
|
+
"name": "visible",
|
|
553
472
|
"params": "(value)",
|
|
554
473
|
"returns": "this",
|
|
555
|
-
"description": "Set
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"name": "animate",
|
|
559
|
-
"params": "(value)",
|
|
560
|
-
"returns": "this",
|
|
561
|
-
"description": "Set animate"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"name": "animationDuration",
|
|
565
|
-
"params": "(value)",
|
|
566
|
-
"returns": "this",
|
|
567
|
-
"description": "Set animationDuration"
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
"name": "chartOrientation",
|
|
571
|
-
"params": "(value)",
|
|
572
|
-
"returns": "this",
|
|
573
|
-
"description": "Set chartOrientation"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"name": "chartDirection",
|
|
577
|
-
"params": "(value)",
|
|
578
|
-
"returns": "this",
|
|
579
|
-
"description": "Set chartDirection"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"name": "width",
|
|
583
|
-
"params": "(value)",
|
|
584
|
-
"returns": "this",
|
|
585
|
-
"description": "Set width"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"name": "height",
|
|
589
|
-
"params": "(value)",
|
|
590
|
-
"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"
|
|
610
|
-
},
|
|
611
|
-
{
|
|
612
|
-
"name": "theme",
|
|
613
|
-
"params": "(value)",
|
|
614
|
-
"returns": "this",
|
|
615
|
-
"description": "Set theme"
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"name": "styleMode",
|
|
619
|
-
"params": "(value)",
|
|
620
|
-
"returns": "this",
|
|
621
|
-
"description": "Set styleMode"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"name": "borderRadius",
|
|
625
|
-
"params": "(value)",
|
|
626
|
-
"returns": "this",
|
|
627
|
-
"description": "Set borderRadius"
|
|
474
|
+
"description": "Set visible"
|
|
628
475
|
},
|
|
629
476
|
{
|
|
630
477
|
"name": "render",
|
|
@@ -633,38 +480,14 @@
|
|
|
633
480
|
"description": "Set render"
|
|
634
481
|
}
|
|
635
482
|
],
|
|
636
|
-
"example": "jux.
|
|
483
|
+
"example": "jux.button('id').render()"
|
|
637
484
|
},
|
|
638
485
|
{
|
|
639
|
-
"name": "
|
|
486
|
+
"name": "Card",
|
|
640
487
|
"category": "UI Components",
|
|
641
|
-
"description": "
|
|
642
|
-
"constructor": "jux.
|
|
488
|
+
"description": "Card component",
|
|
489
|
+
"constructor": "jux.card(id: string, options: CardOptions = {})",
|
|
643
490
|
"fluentMethods": [
|
|
644
|
-
{
|
|
645
|
-
"name": "bindTheme",
|
|
646
|
-
"params": "(stateObj)",
|
|
647
|
-
"returns": "this",
|
|
648
|
-
"description": "Set bindTheme"
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"name": "bindStyleMode",
|
|
652
|
-
"params": "(stateObj)",
|
|
653
|
-
"returns": "this",
|
|
654
|
-
"description": "Set bindStyleMode"
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
"name": "bindBorderRadius",
|
|
658
|
-
"params": "(stateObj)",
|
|
659
|
-
"returns": "this",
|
|
660
|
-
"description": "Set bindBorderRadius"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"name": "data",
|
|
664
|
-
"params": "(value)",
|
|
665
|
-
"returns": "this",
|
|
666
|
-
"description": "Set data"
|
|
667
|
-
},
|
|
668
491
|
{
|
|
669
492
|
"name": "title",
|
|
670
493
|
"params": "(value)",
|
|
@@ -672,154 +495,22 @@
|
|
|
672
495
|
"description": "Set title"
|
|
673
496
|
},
|
|
674
497
|
{
|
|
675
|
-
"name": "
|
|
676
|
-
"params": "(value)",
|
|
677
|
-
"returns": "this",
|
|
678
|
-
"description": "Set subtitle"
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"name": "xAxisLabel",
|
|
682
|
-
"params": "(value)",
|
|
683
|
-
"returns": "this",
|
|
684
|
-
"description": "Set xAxisLabel"
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"name": "yAxisLabel",
|
|
688
|
-
"params": "(value)",
|
|
689
|
-
"returns": "this",
|
|
690
|
-
"description": "Set yAxisLabel"
|
|
691
|
-
},
|
|
692
|
-
{
|
|
693
|
-
"name": "showTicksX",
|
|
694
|
-
"params": "(value)",
|
|
695
|
-
"returns": "this",
|
|
696
|
-
"description": "Set showTicksX"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"name": "showTicksY",
|
|
700
|
-
"params": "(value)",
|
|
701
|
-
"returns": "this",
|
|
702
|
-
"description": "Set showTicksY"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"name": "showScaleX",
|
|
706
|
-
"params": "(value)",
|
|
707
|
-
"returns": "this",
|
|
708
|
-
"description": "Set showScaleX"
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"name": "showScaleY",
|
|
712
|
-
"params": "(value)",
|
|
713
|
-
"returns": "this",
|
|
714
|
-
"description": "Set showScaleY"
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"name": "scaleXUnit",
|
|
718
|
-
"params": "(value)",
|
|
719
|
-
"returns": "this",
|
|
720
|
-
"description": "Set scaleXUnit"
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
"name": "scaleYUnit",
|
|
724
|
-
"params": "(value)",
|
|
725
|
-
"returns": "this",
|
|
726
|
-
"description": "Set scaleYUnit"
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
"name": "showLegend",
|
|
730
|
-
"params": "(value)",
|
|
731
|
-
"returns": "this",
|
|
732
|
-
"description": "Set showLegend"
|
|
733
|
-
},
|
|
734
|
-
{
|
|
735
|
-
"name": "legendOrientation",
|
|
736
|
-
"params": "(value)",
|
|
737
|
-
"returns": "this",
|
|
738
|
-
"description": "Set legendOrientation"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
"name": "showDataTable",
|
|
742
|
-
"params": "(value)",
|
|
743
|
-
"returns": "this",
|
|
744
|
-
"description": "Set showDataTable"
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"name": "showDataLabels",
|
|
748
|
-
"params": "(value)",
|
|
749
|
-
"returns": "this",
|
|
750
|
-
"description": "Set showDataLabels"
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"name": "animate",
|
|
754
|
-
"params": "(value)",
|
|
755
|
-
"returns": "this",
|
|
756
|
-
"description": "Set animate"
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
"name": "animationDuration",
|
|
760
|
-
"params": "(value)",
|
|
761
|
-
"returns": "this",
|
|
762
|
-
"description": "Set animationDuration"
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"name": "chartOrientation",
|
|
766
|
-
"params": "(value)",
|
|
767
|
-
"returns": "this",
|
|
768
|
-
"description": "Set chartOrientation"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"name": "chartDirection",
|
|
772
|
-
"params": "(value)",
|
|
773
|
-
"returns": "this",
|
|
774
|
-
"description": "Set chartDirection"
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"name": "width",
|
|
778
|
-
"params": "(value)",
|
|
779
|
-
"returns": "this",
|
|
780
|
-
"description": "Set width"
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"name": "height",
|
|
784
|
-
"params": "(value)",
|
|
785
|
-
"returns": "this",
|
|
786
|
-
"description": "Set height"
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
"name": "colors",
|
|
790
|
-
"params": "(value)",
|
|
791
|
-
"returns": "this",
|
|
792
|
-
"description": "Set colors"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"name": "class",
|
|
796
|
-
"params": "(value)",
|
|
797
|
-
"returns": "this",
|
|
798
|
-
"description": "Set class"
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"name": "style",
|
|
802
|
-
"params": "(value)",
|
|
803
|
-
"returns": "this",
|
|
804
|
-
"description": "Set style"
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
"name": "theme",
|
|
498
|
+
"name": "content",
|
|
808
499
|
"params": "(value)",
|
|
809
500
|
"returns": "this",
|
|
810
|
-
"description": "Set
|
|
501
|
+
"description": "Set content"
|
|
811
502
|
},
|
|
812
503
|
{
|
|
813
|
-
"name": "
|
|
504
|
+
"name": "footer",
|
|
814
505
|
"params": "(value)",
|
|
815
506
|
"returns": "this",
|
|
816
|
-
"description": "Set
|
|
507
|
+
"description": "Set footer"
|
|
817
508
|
},
|
|
818
509
|
{
|
|
819
|
-
"name": "
|
|
510
|
+
"name": "icon",
|
|
820
511
|
"params": "(value)",
|
|
821
512
|
"returns": "this",
|
|
822
|
-
"description": "Set
|
|
513
|
+
"description": "Set icon"
|
|
823
514
|
},
|
|
824
515
|
{
|
|
825
516
|
"name": "render",
|
|
@@ -828,991 +519,109 @@
|
|
|
828
519
|
"description": "Set render"
|
|
829
520
|
}
|
|
830
521
|
],
|
|
831
|
-
"example": "jux.
|
|
522
|
+
"example": "jux.card('id').render()"
|
|
832
523
|
},
|
|
833
524
|
{
|
|
834
|
-
"name": "
|
|
525
|
+
"name": "Checkbox",
|
|
835
526
|
"category": "UI Components",
|
|
836
|
-
"description": "
|
|
837
|
-
"constructor": "jux.
|
|
527
|
+
"description": "Checkbox component",
|
|
528
|
+
"constructor": "jux.checkbox(id: string, options: CheckboxOptions = {})",
|
|
838
529
|
"fluentMethods": [
|
|
839
530
|
{
|
|
840
|
-
"name": "
|
|
841
|
-
"params": "(value)",
|
|
842
|
-
"returns": "this",
|
|
843
|
-
"description": "Set text"
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
"name": "variant",
|
|
847
|
-
"params": "(value)",
|
|
848
|
-
"returns": "this",
|
|
849
|
-
"description": "Set variant"
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
"name": "size",
|
|
853
|
-
"params": "(value)",
|
|
854
|
-
"returns": "this",
|
|
855
|
-
"description": "Set size"
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
"name": "pill",
|
|
531
|
+
"name": "checked",
|
|
859
532
|
"params": "(value)",
|
|
860
533
|
"returns": "this",
|
|
861
|
-
"description": "Set
|
|
534
|
+
"description": "Set checked"
|
|
862
535
|
},
|
|
863
536
|
{
|
|
864
|
-
"name": "
|
|
537
|
+
"name": "value",
|
|
865
538
|
"params": "(value)",
|
|
866
539
|
"returns": "this",
|
|
867
|
-
"description": "Set
|
|
540
|
+
"description": "Set value"
|
|
868
541
|
},
|
|
869
542
|
{
|
|
870
|
-
"name": "
|
|
543
|
+
"name": "setValue",
|
|
871
544
|
"params": "(value)",
|
|
872
545
|
"returns": "this",
|
|
873
|
-
"description": "Set
|
|
546
|
+
"description": "Set setValue"
|
|
874
547
|
},
|
|
875
548
|
{
|
|
876
549
|
"name": "render",
|
|
877
550
|
"params": "(targetId?)",
|
|
878
551
|
"returns": "this",
|
|
879
552
|
"description": "Set render"
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
"name": "renderTo",
|
|
883
|
-
"params": "(juxComponent)",
|
|
884
|
-
"returns": "this",
|
|
885
|
-
"description": "Set renderTo"
|
|
886
553
|
}
|
|
887
554
|
],
|
|
888
|
-
"example": "jux.
|
|
555
|
+
"example": "jux.checkbox('id').render()"
|
|
889
556
|
},
|
|
890
557
|
{
|
|
891
|
-
"name": "
|
|
892
|
-
"category": "UI Components",
|
|
893
|
-
"description": "
|
|
894
|
-
"constructor": "jux.
|
|
895
|
-
"fluentMethods": [
|
|
896
|
-
{
|
|
897
|
-
"name": "bindTheme",
|
|
898
|
-
"params": "(stateObj)",
|
|
899
|
-
"returns": "this",
|
|
900
|
-
"description": "Set bindTheme"
|
|
901
|
-
},
|
|
902
|
-
{
|
|
903
|
-
"name": "bindStyleMode",
|
|
904
|
-
"params": "(stateObj)",
|
|
905
|
-
"returns": "this",
|
|
906
|
-
"description": "Set bindStyleMode"
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
"name": "bindBorderRadius",
|
|
910
|
-
"params": "(stateObj)",
|
|
911
|
-
"returns": "this",
|
|
912
|
-
"description": "Set bindBorderRadius"
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"name": "data",
|
|
916
|
-
"params": "(value)",
|
|
917
|
-
"returns": "this",
|
|
918
|
-
"description": "Set data"
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"name": "title",
|
|
922
|
-
"params": "(value)",
|
|
923
|
-
"returns": "this",
|
|
924
|
-
"description": "Set title"
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
"name": "subtitle",
|
|
928
|
-
"params": "(value)",
|
|
929
|
-
"returns": "this",
|
|
930
|
-
"description": "Set subtitle"
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"name": "xAxisLabel",
|
|
934
|
-
"params": "(value)",
|
|
935
|
-
"returns": "this",
|
|
936
|
-
"description": "Set xAxisLabel"
|
|
937
|
-
},
|
|
938
|
-
{
|
|
939
|
-
"name": "yAxisLabel",
|
|
940
|
-
"params": "(value)",
|
|
941
|
-
"returns": "this",
|
|
942
|
-
"description": "Set yAxisLabel"
|
|
943
|
-
},
|
|
944
|
-
{
|
|
945
|
-
"name": "showTicksX",
|
|
946
|
-
"params": "(value)",
|
|
947
|
-
"returns": "this",
|
|
948
|
-
"description": "Set showTicksX"
|
|
949
|
-
},
|
|
950
|
-
{
|
|
951
|
-
"name": "showTicksY",
|
|
952
|
-
"params": "(value)",
|
|
953
|
-
"returns": "this",
|
|
954
|
-
"description": "Set showTicksY"
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"name": "showScaleX",
|
|
958
|
-
"params": "(value)",
|
|
959
|
-
"returns": "this",
|
|
960
|
-
"description": "Set showScaleX"
|
|
961
|
-
},
|
|
962
|
-
{
|
|
963
|
-
"name": "showScaleY",
|
|
964
|
-
"params": "(value)",
|
|
965
|
-
"returns": "this",
|
|
966
|
-
"description": "Set showScaleY"
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
"name": "scaleXUnit",
|
|
970
|
-
"params": "(value)",
|
|
971
|
-
"returns": "this",
|
|
972
|
-
"description": "Set scaleXUnit"
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
"name": "scaleYUnit",
|
|
976
|
-
"params": "(value)",
|
|
977
|
-
"returns": "this",
|
|
978
|
-
"description": "Set scaleYUnit"
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"name": "showLegend",
|
|
982
|
-
"params": "(value)",
|
|
983
|
-
"returns": "this",
|
|
984
|
-
"description": "Set showLegend"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"name": "legendOrientation",
|
|
988
|
-
"params": "(value)",
|
|
989
|
-
"returns": "this",
|
|
990
|
-
"description": "Set legendOrientation"
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"name": "showDataTable",
|
|
994
|
-
"params": "(value)",
|
|
995
|
-
"returns": "this",
|
|
996
|
-
"description": "Set showDataTable"
|
|
997
|
-
},
|
|
998
|
-
{
|
|
999
|
-
"name": "showDataLabels",
|
|
1000
|
-
"params": "(value)",
|
|
1001
|
-
"returns": "this",
|
|
1002
|
-
"description": "Set showDataLabels"
|
|
1003
|
-
},
|
|
1004
|
-
{
|
|
1005
|
-
"name": "animate",
|
|
1006
|
-
"params": "(value)",
|
|
1007
|
-
"returns": "this",
|
|
1008
|
-
"description": "Set animate"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"name": "animationDuration",
|
|
1012
|
-
"params": "(value)",
|
|
1013
|
-
"returns": "this",
|
|
1014
|
-
"description": "Set animationDuration"
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
"name": "chartOrientation",
|
|
1018
|
-
"params": "(value)",
|
|
1019
|
-
"returns": "this",
|
|
1020
|
-
"description": "Set chartOrientation"
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"name": "chartDirection",
|
|
1024
|
-
"params": "(value)",
|
|
1025
|
-
"returns": "this",
|
|
1026
|
-
"description": "Set chartDirection"
|
|
1027
|
-
},
|
|
1028
|
-
{
|
|
1029
|
-
"name": "width",
|
|
1030
|
-
"params": "(value)",
|
|
1031
|
-
"returns": "this",
|
|
1032
|
-
"description": "Set width"
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"name": "height",
|
|
1036
|
-
"params": "(value)",
|
|
1037
|
-
"returns": "this",
|
|
1038
|
-
"description": "Set height"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"name": "colors",
|
|
1042
|
-
"params": "(value)",
|
|
1043
|
-
"returns": "this",
|
|
1044
|
-
"description": "Set colors"
|
|
1045
|
-
},
|
|
1046
|
-
{
|
|
1047
|
-
"name": "class",
|
|
1048
|
-
"params": "(value)",
|
|
1049
|
-
"returns": "this",
|
|
1050
|
-
"description": "Set class"
|
|
1051
|
-
},
|
|
1052
|
-
{
|
|
1053
|
-
"name": "style",
|
|
1054
|
-
"params": "(value)",
|
|
1055
|
-
"returns": "this",
|
|
1056
|
-
"description": "Set style"
|
|
1057
|
-
},
|
|
1058
|
-
{
|
|
1059
|
-
"name": "theme",
|
|
1060
|
-
"params": "(value)",
|
|
1061
|
-
"returns": "this",
|
|
1062
|
-
"description": "Set theme"
|
|
1063
|
-
},
|
|
1064
|
-
{
|
|
1065
|
-
"name": "styleMode",
|
|
1066
|
-
"params": "(value)",
|
|
1067
|
-
"returns": "this",
|
|
1068
|
-
"description": "Set styleMode"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"name": "borderRadius",
|
|
1072
|
-
"params": "(value)",
|
|
1073
|
-
"returns": "this",
|
|
1074
|
-
"description": "Set borderRadius"
|
|
1075
|
-
},
|
|
1076
|
-
{
|
|
1077
|
-
"name": "render",
|
|
1078
|
-
"params": "(targetId?)",
|
|
1079
|
-
"returns": "this",
|
|
1080
|
-
"description": "Set render"
|
|
1081
|
-
}
|
|
1082
|
-
],
|
|
1083
|
-
"example": "jux.barchart('sales-chart')"
|
|
1084
|
-
},
|
|
1085
|
-
{
|
|
1086
|
-
"name": "Button",
|
|
1087
|
-
"category": "UI Components",
|
|
1088
|
-
"description": "Button component options",
|
|
1089
|
-
"constructor": "jux.button(id: string, options?: ButtonOptions)",
|
|
1090
|
-
"fluentMethods": [
|
|
1091
|
-
{
|
|
1092
|
-
"name": "label",
|
|
1093
|
-
"params": "(value)",
|
|
1094
|
-
"returns": "this",
|
|
1095
|
-
"description": "Set label"
|
|
1096
|
-
},
|
|
1097
|
-
{
|
|
1098
|
-
"name": "icon",
|
|
1099
|
-
"params": "(value)",
|
|
1100
|
-
"returns": "this",
|
|
1101
|
-
"description": "Set icon"
|
|
1102
|
-
},
|
|
1103
|
-
{
|
|
1104
|
-
"name": "bind",
|
|
1105
|
-
"params": "(event, handler)",
|
|
1106
|
-
"returns": "this",
|
|
1107
|
-
"description": "Set bind"
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
"name": "variant",
|
|
1111
|
-
"params": "(value)",
|
|
1112
|
-
"returns": "this",
|
|
1113
|
-
"description": "Set variant"
|
|
1114
|
-
},
|
|
1115
|
-
{
|
|
1116
|
-
"name": "size",
|
|
1117
|
-
"params": "(value)",
|
|
1118
|
-
"returns": "this",
|
|
1119
|
-
"description": "Set size"
|
|
1120
|
-
},
|
|
1121
|
-
{
|
|
1122
|
-
"name": "disabled",
|
|
1123
|
-
"params": "(value)",
|
|
1124
|
-
"returns": "this",
|
|
1125
|
-
"description": "Set disabled"
|
|
1126
|
-
},
|
|
1127
|
-
{
|
|
1128
|
-
"name": "loading",
|
|
1129
|
-
"params": "(value)",
|
|
1130
|
-
"returns": "this",
|
|
1131
|
-
"description": "Set loading"
|
|
1132
|
-
},
|
|
1133
|
-
{
|
|
1134
|
-
"name": "iconPosition",
|
|
1135
|
-
"params": "(value)",
|
|
1136
|
-
"returns": "this",
|
|
1137
|
-
"description": "Set iconPosition"
|
|
1138
|
-
},
|
|
1139
|
-
{
|
|
1140
|
-
"name": "fullWidth",
|
|
1141
|
-
"params": "(value)",
|
|
1142
|
-
"returns": "this",
|
|
1143
|
-
"description": "Set fullWidth"
|
|
1144
|
-
},
|
|
1145
|
-
{
|
|
1146
|
-
"name": "type",
|
|
1147
|
-
"params": "(value)",
|
|
1148
|
-
"returns": "this",
|
|
1149
|
-
"description": "Set type"
|
|
1150
|
-
},
|
|
1151
|
-
{
|
|
1152
|
-
"name": "style",
|
|
1153
|
-
"params": "(value)",
|
|
1154
|
-
"returns": "this",
|
|
1155
|
-
"description": "Set style"
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
"name": "class",
|
|
1159
|
-
"params": "(value)",
|
|
1160
|
-
"returns": "this",
|
|
1161
|
-
"description": "Set class"
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
"name": "render",
|
|
1165
|
-
"params": "(targetId?)",
|
|
1166
|
-
"returns": "this",
|
|
1167
|
-
"description": "Set render"
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
"name": "renderTo",
|
|
1171
|
-
"params": "(juxComponent)",
|
|
1172
|
-
"returns": "this",
|
|
1173
|
-
"description": "Set renderTo"
|
|
1174
|
-
}
|
|
1175
|
-
],
|
|
1176
|
-
"example": "jux.button('id').render()"
|
|
1177
|
-
},
|
|
1178
|
-
{
|
|
1179
|
-
"name": "Card",
|
|
1180
|
-
"category": "UI Components",
|
|
1181
|
-
"description": "Card component options",
|
|
1182
|
-
"constructor": "jux.card(id: string, options: CardOptions = {})",
|
|
1183
|
-
"fluentMethods": [
|
|
1184
|
-
{
|
|
1185
|
-
"name": "title",
|
|
1186
|
-
"params": "(value)",
|
|
1187
|
-
"returns": "this",
|
|
1188
|
-
"description": "Set title"
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"name": "subtitle",
|
|
1192
|
-
"params": "(value)",
|
|
1193
|
-
"returns": "this",
|
|
1194
|
-
"description": "Set subtitle"
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"name": "content",
|
|
1198
|
-
"params": "(value)",
|
|
1199
|
-
"returns": "this",
|
|
1200
|
-
"description": "Set content"
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"name": "image",
|
|
1204
|
-
"params": "(value)",
|
|
1205
|
-
"returns": "this",
|
|
1206
|
-
"description": "Set image"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"name": "variant",
|
|
1210
|
-
"params": "(value)",
|
|
1211
|
-
"returns": "this",
|
|
1212
|
-
"description": "Set variant"
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"name": "style",
|
|
1216
|
-
"params": "(value)",
|
|
1217
|
-
"returns": "this",
|
|
1218
|
-
"description": "Set style"
|
|
1219
|
-
},
|
|
1220
|
-
{
|
|
1221
|
-
"name": "class",
|
|
1222
|
-
"params": "(value)",
|
|
1223
|
-
"returns": "this",
|
|
1224
|
-
"description": "Set class"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"name": "withActions",
|
|
1228
|
-
"params": "()",
|
|
1229
|
-
"returns": "this",
|
|
1230
|
-
"description": "Set withActions"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"name": "render",
|
|
1234
|
-
"params": "(targetId?)",
|
|
1235
|
-
"returns": "this",
|
|
1236
|
-
"description": "Set render"
|
|
1237
|
-
},
|
|
1238
|
-
{
|
|
1239
|
-
"name": "renderTo",
|
|
1240
|
-
"params": "(juxComponent)",
|
|
1241
|
-
"returns": "this",
|
|
1242
|
-
"description": "Set renderTo"
|
|
1243
|
-
}
|
|
1244
|
-
],
|
|
1245
|
-
"example": "const card = jux.card('myCard', {"
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
"name": "Checkbox",
|
|
1249
|
-
"category": "UI Components",
|
|
1250
|
-
"description": "Two-way binding to state",
|
|
1251
|
-
"constructor": "jux.checkbox(id: string, options: CheckboxOptions = {})",
|
|
1252
|
-
"fluentMethods": [
|
|
1253
|
-
{
|
|
1254
|
-
"name": "label",
|
|
1255
|
-
"params": "(value)",
|
|
1256
|
-
"returns": "this",
|
|
1257
|
-
"description": "Set label"
|
|
1258
|
-
},
|
|
1259
|
-
{
|
|
1260
|
-
"name": "checked",
|
|
1261
|
-
"params": "(value)",
|
|
1262
|
-
"returns": "this",
|
|
1263
|
-
"description": "Set checked"
|
|
1264
|
-
},
|
|
1265
|
-
{
|
|
1266
|
-
"name": "disabled",
|
|
1267
|
-
"params": "(value)",
|
|
1268
|
-
"returns": "this",
|
|
1269
|
-
"description": "Set disabled"
|
|
1270
|
-
},
|
|
1271
|
-
{
|
|
1272
|
-
"name": "name",
|
|
1273
|
-
"params": "(value)",
|
|
1274
|
-
"returns": "this",
|
|
1275
|
-
"description": "Set name"
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
"name": "value",
|
|
1279
|
-
"params": "(value)",
|
|
1280
|
-
"returns": "this",
|
|
1281
|
-
"description": "Set value"
|
|
1282
|
-
},
|
|
1283
|
-
{
|
|
1284
|
-
"name": "style",
|
|
1285
|
-
"params": "(value)",
|
|
1286
|
-
"returns": "this",
|
|
1287
|
-
"description": "Set style"
|
|
1288
|
-
},
|
|
1289
|
-
{
|
|
1290
|
-
"name": "class",
|
|
1291
|
-
"params": "(value)",
|
|
1292
|
-
"returns": "this",
|
|
1293
|
-
"description": "Set class"
|
|
1294
|
-
},
|
|
1295
|
-
{
|
|
1296
|
-
"name": "bind",
|
|
1297
|
-
"params": "(stateObj)",
|
|
1298
|
-
"returns": "this",
|
|
1299
|
-
"description": "Set bind"
|
|
1300
|
-
},
|
|
1301
|
-
{
|
|
1302
|
-
"name": "render",
|
|
1303
|
-
"params": "(targetId?)",
|
|
1304
|
-
"returns": "this",
|
|
1305
|
-
"description": "Set render"
|
|
1306
|
-
},
|
|
1307
|
-
{
|
|
1308
|
-
"name": "renderTo",
|
|
1309
|
-
"params": "(juxComponent)",
|
|
1310
|
-
"returns": "this",
|
|
1311
|
-
"description": "Set renderTo"
|
|
1312
|
-
}
|
|
1313
|
-
],
|
|
1314
|
-
"example": "jux.checkbox('id').render()"
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
"name": "Code",
|
|
1318
|
-
"category": "UI Components",
|
|
1319
|
-
"description": "Code component options",
|
|
1320
|
-
"constructor": "jux.code(id: string, content?: string, language?: string)",
|
|
1321
|
-
"fluentMethods": [
|
|
1322
|
-
{
|
|
1323
|
-
"name": "code",
|
|
1324
|
-
"params": "(value)",
|
|
1325
|
-
"returns": "this",
|
|
1326
|
-
"description": "Set code"
|
|
1327
|
-
},
|
|
1328
|
-
{
|
|
1329
|
-
"name": "language",
|
|
1330
|
-
"params": "(value)",
|
|
1331
|
-
"returns": "this",
|
|
1332
|
-
"description": "Set language"
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
"name": "lineNumbers",
|
|
1336
|
-
"params": "(value)",
|
|
1337
|
-
"returns": "this",
|
|
1338
|
-
"description": "Set lineNumbers"
|
|
1339
|
-
},
|
|
1340
|
-
{
|
|
1341
|
-
"name": "highlight",
|
|
1342
|
-
"params": "(value)",
|
|
1343
|
-
"returns": "this",
|
|
1344
|
-
"description": "Set highlight"
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
"name": "style",
|
|
1348
|
-
"params": "(value)",
|
|
1349
|
-
"returns": "this",
|
|
1350
|
-
"description": "Set style"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"name": "class",
|
|
1354
|
-
"params": "(value)",
|
|
1355
|
-
"returns": "this",
|
|
1356
|
-
"description": "Set class"
|
|
1357
|
-
},
|
|
1358
|
-
{
|
|
1359
|
-
"name": "render",
|
|
1360
|
-
"params": "(targetId?)",
|
|
1361
|
-
"returns": "this",
|
|
1362
|
-
"description": "Set render"
|
|
1363
|
-
},
|
|
1364
|
-
{
|
|
1365
|
-
"name": "renderTo",
|
|
1366
|
-
"params": "(juxComponent)",
|
|
1367
|
-
"returns": "this",
|
|
1368
|
-
"description": "Set renderTo"
|
|
1369
|
-
}
|
|
1370
|
-
],
|
|
1371
|
-
"example": "const code = jux.code('myCode', 'console.log(\"hello\")', 'javascript');"
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
"name": "Container",
|
|
1375
|
-
"category": "UI Components",
|
|
1376
|
-
"description": "Container options",
|
|
1377
|
-
"constructor": "jux.container(id: string, options: ContainerOptions = {})",
|
|
1378
|
-
"fluentMethods": [
|
|
1379
|
-
{
|
|
1380
|
-
"name": "class",
|
|
1381
|
-
"params": "(value)",
|
|
1382
|
-
"returns": "this",
|
|
1383
|
-
"description": "Set class"
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"name": "style",
|
|
1387
|
-
"params": "(value)",
|
|
1388
|
-
"returns": "this",
|
|
1389
|
-
"description": "Set style"
|
|
1390
|
-
},
|
|
1391
|
-
{
|
|
1392
|
-
"name": "direction",
|
|
1393
|
-
"params": "(value)",
|
|
1394
|
-
"returns": "this",
|
|
1395
|
-
"description": "Set direction"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"name": "gap",
|
|
1399
|
-
"params": "(value)",
|
|
1400
|
-
"returns": "this",
|
|
1401
|
-
"description": "Set gap"
|
|
1402
|
-
},
|
|
1403
|
-
{
|
|
1404
|
-
"name": "align",
|
|
1405
|
-
"params": "(value)",
|
|
1406
|
-
"returns": "this",
|
|
1407
|
-
"description": "Set align"
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"name": "justify",
|
|
1411
|
-
"params": "(value)",
|
|
1412
|
-
"returns": "this",
|
|
1413
|
-
"description": "Set justify"
|
|
1414
|
-
},
|
|
1415
|
-
{
|
|
1416
|
-
"name": "render",
|
|
1417
|
-
"params": "(targetId?)",
|
|
1418
|
-
"returns": "this",
|
|
1419
|
-
"description": "Set render"
|
|
1420
|
-
}
|
|
1421
|
-
],
|
|
1422
|
-
"example": "// Plain container"
|
|
1423
|
-
},
|
|
1424
|
-
{
|
|
1425
|
-
"name": "Datepicker",
|
|
1426
|
-
"category": "UI Components",
|
|
1427
|
-
"description": "DatePicker component options",
|
|
1428
|
-
"constructor": "jux.datepicker(id: string, options: DatePickerOptions = {})",
|
|
1429
|
-
"fluentMethods": [
|
|
1430
|
-
{
|
|
1431
|
-
"name": "value",
|
|
1432
|
-
"params": "(value)",
|
|
1433
|
-
"returns": "this",
|
|
1434
|
-
"description": "Set value"
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"name": "min",
|
|
1438
|
-
"params": "(value)",
|
|
1439
|
-
"returns": "this",
|
|
1440
|
-
"description": "Set min"
|
|
1441
|
-
},
|
|
1442
|
-
{
|
|
1443
|
-
"name": "max",
|
|
1444
|
-
"params": "(value)",
|
|
1445
|
-
"returns": "this",
|
|
1446
|
-
"description": "Set max"
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"name": "placeholder",
|
|
1450
|
-
"params": "(value)",
|
|
1451
|
-
"returns": "this",
|
|
1452
|
-
"description": "Set placeholder"
|
|
1453
|
-
},
|
|
1454
|
-
{
|
|
1455
|
-
"name": "disabled",
|
|
1456
|
-
"params": "(value)",
|
|
1457
|
-
"returns": "this",
|
|
1458
|
-
"description": "Set disabled"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"name": "name",
|
|
1462
|
-
"params": "(value)",
|
|
1463
|
-
"returns": "this",
|
|
1464
|
-
"description": "Set name"
|
|
1465
|
-
},
|
|
1466
|
-
{
|
|
1467
|
-
"name": "style",
|
|
1468
|
-
"params": "(value)",
|
|
1469
|
-
"returns": "this",
|
|
1470
|
-
"description": "Set style"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"name": "class",
|
|
1474
|
-
"params": "(value)",
|
|
1475
|
-
"returns": "this",
|
|
1476
|
-
"description": "Set class"
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
"name": "bind",
|
|
1480
|
-
"params": "(stateObj)",
|
|
1481
|
-
"returns": "this",
|
|
1482
|
-
"description": "Set bind"
|
|
1483
|
-
},
|
|
1484
|
-
{
|
|
1485
|
-
"name": "render",
|
|
1486
|
-
"params": "(targetId?)",
|
|
1487
|
-
"returns": "this",
|
|
1488
|
-
"description": "Set render"
|
|
1489
|
-
},
|
|
1490
|
-
{
|
|
1491
|
-
"name": "renderTo",
|
|
1492
|
-
"params": "(juxComponent)",
|
|
1493
|
-
"returns": "this",
|
|
1494
|
-
"description": "Set renderTo"
|
|
1495
|
-
}
|
|
1496
|
-
],
|
|
1497
|
-
"example": "jux.datepicker('start-date', {"
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
"name": "Dialog",
|
|
1501
|
-
"category": "UI Components",
|
|
1502
|
-
"description": "Dialog component options",
|
|
1503
|
-
"constructor": "jux.dialog(id: string, options: DialogOptions = {})",
|
|
1504
|
-
"fluentMethods": [
|
|
1505
|
-
{
|
|
1506
|
-
"name": "title",
|
|
1507
|
-
"params": "(value)",
|
|
1508
|
-
"returns": "this",
|
|
1509
|
-
"description": "Set title"
|
|
1510
|
-
},
|
|
1511
|
-
{
|
|
1512
|
-
"name": "message",
|
|
1513
|
-
"params": "(value)",
|
|
1514
|
-
"returns": "this",
|
|
1515
|
-
"description": "Set message"
|
|
1516
|
-
},
|
|
1517
|
-
{
|
|
1518
|
-
"name": "confirmText",
|
|
1519
|
-
"params": "(value)",
|
|
1520
|
-
"returns": "this",
|
|
1521
|
-
"description": "Set confirmText"
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
"name": "cancelText",
|
|
1525
|
-
"params": "(value)",
|
|
1526
|
-
"returns": "this",
|
|
1527
|
-
"description": "Set cancelText"
|
|
1528
|
-
},
|
|
1529
|
-
{
|
|
1530
|
-
"name": "variant",
|
|
1531
|
-
"params": "(value)",
|
|
1532
|
-
"returns": "this",
|
|
1533
|
-
"description": "Set variant"
|
|
1534
|
-
},
|
|
1535
|
-
{
|
|
1536
|
-
"name": "style",
|
|
1537
|
-
"params": "(value)",
|
|
1538
|
-
"returns": "this",
|
|
1539
|
-
"description": "Set style"
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"name": "class",
|
|
1543
|
-
"params": "(value)",
|
|
1544
|
-
"returns": "this",
|
|
1545
|
-
"description": "Set class"
|
|
1546
|
-
},
|
|
1547
|
-
{
|
|
1548
|
-
"name": "render",
|
|
1549
|
-
"params": "(targetId?)",
|
|
1550
|
-
"returns": "this",
|
|
1551
|
-
"description": "Set render"
|
|
1552
|
-
},
|
|
1553
|
-
{
|
|
1554
|
-
"name": "renderTo",
|
|
1555
|
-
"params": "(juxComponent)",
|
|
1556
|
-
"returns": "this",
|
|
1557
|
-
"description": "Set renderTo"
|
|
1558
|
-
}
|
|
1559
|
-
],
|
|
1560
|
-
"example": "jux.dialog('confirm-delete', {"
|
|
1561
|
-
},
|
|
1562
|
-
{
|
|
1563
|
-
"name": "Divider",
|
|
1564
|
-
"category": "UI Components",
|
|
1565
|
-
"description": "Divider - Simple horizontal or vertical divider line",
|
|
1566
|
-
"constructor": "jux.divider(options: DividerOptions = {})",
|
|
1567
|
-
"fluentMethods": [
|
|
1568
|
-
{
|
|
1569
|
-
"name": "orientation",
|
|
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",
|
|
1582
|
-
"params": "(value)",
|
|
1583
|
-
"returns": "this",
|
|
1584
|
-
"description": "Set color"
|
|
1585
|
-
},
|
|
1586
|
-
{
|
|
1587
|
-
"name": "margin",
|
|
1588
|
-
"params": "(value)",
|
|
1589
|
-
"returns": "this",
|
|
1590
|
-
"description": "Set margin"
|
|
1591
|
-
},
|
|
1592
|
-
{
|
|
1593
|
-
"name": "style",
|
|
1594
|
-
"params": "(value)",
|
|
1595
|
-
"returns": "this",
|
|
1596
|
-
"description": "Set style"
|
|
1597
|
-
},
|
|
1598
|
-
{
|
|
1599
|
-
"name": "className",
|
|
1600
|
-
"params": "(value)",
|
|
1601
|
-
"returns": "this",
|
|
1602
|
-
"description": "Set className"
|
|
1603
|
-
},
|
|
1604
|
-
{
|
|
1605
|
-
"name": "render",
|
|
1606
|
-
"params": "(targetSelector)",
|
|
1607
|
-
"returns": "this",
|
|
1608
|
-
"description": "Set render"
|
|
1609
|
-
},
|
|
1610
|
-
{
|
|
1611
|
-
"name": "replace",
|
|
1612
|
-
"params": "(targetSelector)",
|
|
1613
|
-
"returns": "this",
|
|
1614
|
-
"description": "Set replace"
|
|
1615
|
-
},
|
|
1616
|
-
{
|
|
1617
|
-
"name": "before",
|
|
1618
|
-
"params": "(targetSelector)",
|
|
1619
|
-
"returns": "this",
|
|
1620
|
-
"description": "Set before"
|
|
1621
|
-
},
|
|
1622
|
-
{
|
|
1623
|
-
"name": "after",
|
|
1624
|
-
"params": "(targetSelector)",
|
|
1625
|
-
"returns": "this",
|
|
1626
|
-
"description": "Set after"
|
|
1627
|
-
}
|
|
1628
|
-
],
|
|
1629
|
-
"example": "// Simple horizontal divider"
|
|
1630
|
-
},
|
|
1631
|
-
{
|
|
1632
|
-
"name": "Doughnutchart",
|
|
1633
|
-
"category": "UI Components",
|
|
1634
|
-
"description": "Bar chart data point",
|
|
1635
|
-
"constructor": "jux.doughnutchart(id: string, options: DoughnutChartOptions = {})",
|
|
1636
|
-
"fluentMethods": [
|
|
1637
|
-
{
|
|
1638
|
-
"name": "bindTheme",
|
|
1639
|
-
"params": "(stateObj)",
|
|
1640
|
-
"returns": "this",
|
|
1641
|
-
"description": "Set bindTheme"
|
|
1642
|
-
},
|
|
1643
|
-
{
|
|
1644
|
-
"name": "bindStyleMode",
|
|
1645
|
-
"params": "(stateObj)",
|
|
1646
|
-
"returns": "this",
|
|
1647
|
-
"description": "Set bindStyleMode"
|
|
1648
|
-
},
|
|
1649
|
-
{
|
|
1650
|
-
"name": "bindBorderRadius",
|
|
1651
|
-
"params": "(stateObj)",
|
|
1652
|
-
"returns": "this",
|
|
1653
|
-
"description": "Set bindBorderRadius"
|
|
1654
|
-
},
|
|
1655
|
-
{
|
|
1656
|
-
"name": "data",
|
|
1657
|
-
"params": "(value)",
|
|
1658
|
-
"returns": "this",
|
|
1659
|
-
"description": "Set data"
|
|
1660
|
-
},
|
|
1661
|
-
{
|
|
1662
|
-
"name": "title",
|
|
1663
|
-
"params": "(value)",
|
|
1664
|
-
"returns": "this",
|
|
1665
|
-
"description": "Set title"
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
"name": "subtitle",
|
|
1669
|
-
"params": "(value)",
|
|
1670
|
-
"returns": "this",
|
|
1671
|
-
"description": "Set subtitle"
|
|
1672
|
-
},
|
|
1673
|
-
{
|
|
1674
|
-
"name": "xAxisLabel",
|
|
1675
|
-
"params": "(value)",
|
|
1676
|
-
"returns": "this",
|
|
1677
|
-
"description": "Set xAxisLabel"
|
|
1678
|
-
},
|
|
1679
|
-
{
|
|
1680
|
-
"name": "yAxisLabel",
|
|
1681
|
-
"params": "(value)",
|
|
1682
|
-
"returns": "this",
|
|
1683
|
-
"description": "Set yAxisLabel"
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"name": "showTicksX",
|
|
1687
|
-
"params": "(value)",
|
|
1688
|
-
"returns": "this",
|
|
1689
|
-
"description": "Set showTicksX"
|
|
1690
|
-
},
|
|
1691
|
-
{
|
|
1692
|
-
"name": "showTicksY",
|
|
1693
|
-
"params": "(value)",
|
|
1694
|
-
"returns": "this",
|
|
1695
|
-
"description": "Set showTicksY"
|
|
1696
|
-
},
|
|
1697
|
-
{
|
|
1698
|
-
"name": "showScaleX",
|
|
1699
|
-
"params": "(value)",
|
|
1700
|
-
"returns": "this",
|
|
1701
|
-
"description": "Set showScaleX"
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"name": "showScaleY",
|
|
1705
|
-
"params": "(value)",
|
|
1706
|
-
"returns": "this",
|
|
1707
|
-
"description": "Set showScaleY"
|
|
1708
|
-
},
|
|
1709
|
-
{
|
|
1710
|
-
"name": "scaleXUnit",
|
|
1711
|
-
"params": "(value)",
|
|
1712
|
-
"returns": "this",
|
|
1713
|
-
"description": "Set scaleXUnit"
|
|
1714
|
-
},
|
|
1715
|
-
{
|
|
1716
|
-
"name": "scaleYUnit",
|
|
1717
|
-
"params": "(value)",
|
|
1718
|
-
"returns": "this",
|
|
1719
|
-
"description": "Set scaleYUnit"
|
|
1720
|
-
},
|
|
1721
|
-
{
|
|
1722
|
-
"name": "showLegend",
|
|
1723
|
-
"params": "(value)",
|
|
1724
|
-
"returns": "this",
|
|
1725
|
-
"description": "Set showLegend"
|
|
1726
|
-
},
|
|
1727
|
-
{
|
|
1728
|
-
"name": "legendOrientation",
|
|
1729
|
-
"params": "(value)",
|
|
1730
|
-
"returns": "this",
|
|
1731
|
-
"description": "Set legendOrientation"
|
|
1732
|
-
},
|
|
1733
|
-
{
|
|
1734
|
-
"name": "showDataTable",
|
|
1735
|
-
"params": "(value)",
|
|
1736
|
-
"returns": "this",
|
|
1737
|
-
"description": "Set showDataTable"
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
"name": "showDataLabels",
|
|
1741
|
-
"params": "(value)",
|
|
1742
|
-
"returns": "this",
|
|
1743
|
-
"description": "Set showDataLabels"
|
|
1744
|
-
},
|
|
1745
|
-
{
|
|
1746
|
-
"name": "animate",
|
|
1747
|
-
"params": "(value)",
|
|
1748
|
-
"returns": "this",
|
|
1749
|
-
"description": "Set animate"
|
|
1750
|
-
},
|
|
1751
|
-
{
|
|
1752
|
-
"name": "animationDuration",
|
|
1753
|
-
"params": "(value)",
|
|
1754
|
-
"returns": "this",
|
|
1755
|
-
"description": "Set animationDuration"
|
|
1756
|
-
},
|
|
1757
|
-
{
|
|
1758
|
-
"name": "chartOrientation",
|
|
1759
|
-
"params": "(value)",
|
|
1760
|
-
"returns": "this",
|
|
1761
|
-
"description": "Set chartOrientation"
|
|
1762
|
-
},
|
|
558
|
+
"name": "Code",
|
|
559
|
+
"category": "UI Components",
|
|
560
|
+
"description": "Code component",
|
|
561
|
+
"constructor": "jux.code(id: string, options: CodeOptions = {})",
|
|
562
|
+
"fluentMethods": [
|
|
1763
563
|
{
|
|
1764
|
-
"name": "
|
|
564
|
+
"name": "code",
|
|
1765
565
|
"params": "(value)",
|
|
1766
566
|
"returns": "this",
|
|
1767
|
-
"description": "Set
|
|
567
|
+
"description": "Set code"
|
|
1768
568
|
},
|
|
1769
569
|
{
|
|
1770
|
-
"name": "
|
|
570
|
+
"name": "language",
|
|
1771
571
|
"params": "(value)",
|
|
1772
572
|
"returns": "this",
|
|
1773
|
-
"description": "Set
|
|
573
|
+
"description": "Set language"
|
|
1774
574
|
},
|
|
1775
575
|
{
|
|
1776
|
-
"name": "
|
|
1777
|
-
"params": "(
|
|
576
|
+
"name": "render",
|
|
577
|
+
"params": "(targetId?)",
|
|
1778
578
|
"returns": "this",
|
|
1779
|
-
"description": "Set
|
|
1780
|
-
}
|
|
579
|
+
"description": "Set render"
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
"example": "jux.code('id').render()"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"name": "Container",
|
|
586
|
+
"category": "UI Components",
|
|
587
|
+
"description": "Container component",
|
|
588
|
+
"constructor": "jux.container(id: string, options: ContainerOptions = {})",
|
|
589
|
+
"fluentMethods": [
|
|
1781
590
|
{
|
|
1782
|
-
"name": "
|
|
591
|
+
"name": "direction",
|
|
1783
592
|
"params": "(value)",
|
|
1784
593
|
"returns": "this",
|
|
1785
|
-
"description": "Set
|
|
594
|
+
"description": "Set direction"
|
|
1786
595
|
},
|
|
1787
596
|
{
|
|
1788
|
-
"name": "
|
|
597
|
+
"name": "gap",
|
|
1789
598
|
"params": "(value)",
|
|
1790
599
|
"returns": "this",
|
|
1791
|
-
"description": "Set
|
|
600
|
+
"description": "Set gap"
|
|
1792
601
|
},
|
|
1793
602
|
{
|
|
1794
|
-
"name": "
|
|
603
|
+
"name": "wrap",
|
|
1795
604
|
"params": "(value)",
|
|
1796
605
|
"returns": "this",
|
|
1797
|
-
"description": "Set
|
|
606
|
+
"description": "Set wrap"
|
|
1798
607
|
},
|
|
1799
608
|
{
|
|
1800
|
-
"name": "
|
|
609
|
+
"name": "align",
|
|
1801
610
|
"params": "(value)",
|
|
1802
611
|
"returns": "this",
|
|
1803
|
-
"description": "Set
|
|
612
|
+
"description": "Set align"
|
|
1804
613
|
},
|
|
1805
614
|
{
|
|
1806
|
-
"name": "
|
|
615
|
+
"name": "justify",
|
|
1807
616
|
"params": "(value)",
|
|
1808
617
|
"returns": "this",
|
|
1809
|
-
"description": "Set
|
|
618
|
+
"description": "Set justify"
|
|
1810
619
|
},
|
|
1811
620
|
{
|
|
1812
|
-
"name": "
|
|
621
|
+
"name": "padding",
|
|
1813
622
|
"params": "(value)",
|
|
1814
623
|
"returns": "this",
|
|
1815
|
-
"description": "Set
|
|
624
|
+
"description": "Set padding"
|
|
1816
625
|
},
|
|
1817
626
|
{
|
|
1818
627
|
"name": "render",
|
|
@@ -1821,110 +630,116 @@
|
|
|
1821
630
|
"description": "Set render"
|
|
1822
631
|
}
|
|
1823
632
|
],
|
|
1824
|
-
"example": "jux.
|
|
633
|
+
"example": "jux.container('id').render()"
|
|
1825
634
|
},
|
|
1826
635
|
{
|
|
1827
|
-
"name": "
|
|
636
|
+
"name": "Datepicker",
|
|
1828
637
|
"category": "UI Components",
|
|
1829
|
-
"description": "
|
|
1830
|
-
"constructor": "jux.
|
|
638
|
+
"description": "Datepicker component",
|
|
639
|
+
"constructor": "jux.datepicker(id: string, options: DatePickerOptions = {})",
|
|
1831
640
|
"fluentMethods": [
|
|
1832
641
|
{
|
|
1833
|
-
"name": "
|
|
642
|
+
"name": "value",
|
|
1834
643
|
"params": "(value)",
|
|
1835
644
|
"returns": "this",
|
|
1836
|
-
"description": "Set
|
|
1837
|
-
},
|
|
1838
|
-
{
|
|
1839
|
-
"name": "addItem",
|
|
1840
|
-
"params": "(item)",
|
|
1841
|
-
"returns": "this",
|
|
1842
|
-
"description": "Set addItem"
|
|
645
|
+
"description": "Set value"
|
|
1843
646
|
},
|
|
1844
647
|
{
|
|
1845
|
-
"name": "
|
|
648
|
+
"name": "placeholder",
|
|
1846
649
|
"params": "(value)",
|
|
1847
650
|
"returns": "this",
|
|
1848
|
-
"description": "Set
|
|
651
|
+
"description": "Set placeholder"
|
|
1849
652
|
},
|
|
1850
653
|
{
|
|
1851
|
-
"name": "
|
|
654
|
+
"name": "min",
|
|
1852
655
|
"params": "(value)",
|
|
1853
656
|
"returns": "this",
|
|
1854
|
-
"description": "Set
|
|
657
|
+
"description": "Set min"
|
|
1855
658
|
},
|
|
1856
659
|
{
|
|
1857
|
-
"name": "
|
|
660
|
+
"name": "max",
|
|
1858
661
|
"params": "(value)",
|
|
1859
662
|
"returns": "this",
|
|
1860
|
-
"description": "Set
|
|
663
|
+
"description": "Set max"
|
|
1861
664
|
},
|
|
1862
665
|
{
|
|
1863
|
-
"name": "
|
|
666
|
+
"name": "setValue",
|
|
1864
667
|
"params": "(value)",
|
|
1865
668
|
"returns": "this",
|
|
1866
|
-
"description": "Set
|
|
669
|
+
"description": "Set setValue"
|
|
1867
670
|
},
|
|
1868
671
|
{
|
|
1869
672
|
"name": "render",
|
|
1870
673
|
"params": "(targetId?)",
|
|
1871
674
|
"returns": "this",
|
|
1872
675
|
"description": "Set render"
|
|
1873
|
-
},
|
|
1874
|
-
{
|
|
1875
|
-
"name": "renderTo",
|
|
1876
|
-
"params": "(juxComponent)",
|
|
1877
|
-
"returns": "this",
|
|
1878
|
-
"description": "Set renderTo"
|
|
1879
676
|
}
|
|
1880
677
|
],
|
|
1881
|
-
"example": "jux.
|
|
678
|
+
"example": "jux.datepicker('id').render()"
|
|
1882
679
|
},
|
|
1883
680
|
{
|
|
1884
|
-
"name": "
|
|
681
|
+
"name": "Dialog",
|
|
1885
682
|
"category": "UI Components",
|
|
1886
|
-
"description": "
|
|
1887
|
-
"constructor": "jux.
|
|
683
|
+
"description": "Dialog component",
|
|
684
|
+
"constructor": "jux.dialog(id: string, options: DialogOptions = {})",
|
|
1888
685
|
"fluentMethods": [
|
|
1889
686
|
{
|
|
1890
|
-
"name": "
|
|
1891
|
-
"params": "(
|
|
1892
|
-
"returns": "
|
|
1893
|
-
"description": "
|
|
1894
|
-
}
|
|
1895
|
-
],
|
|
1896
|
-
"example": "const div = jux.element('myDiv', { tagType: 'div', className: 'container' });"
|
|
1897
|
-
},
|
|
1898
|
-
{
|
|
1899
|
-
"name": "Fileupload",
|
|
1900
|
-
"category": "UI Components",
|
|
1901
|
-
"description": "FileUpload component options",
|
|
1902
|
-
"constructor": "jux.fileupload(id: string, options: FileUploadOptions = {})",
|
|
1903
|
-
"fluentMethods": [
|
|
687
|
+
"name": "title",
|
|
688
|
+
"params": "(value)",
|
|
689
|
+
"returns": "this",
|
|
690
|
+
"description": "Set title"
|
|
691
|
+
},
|
|
1904
692
|
{
|
|
1905
|
-
"name": "
|
|
693
|
+
"name": "message",
|
|
1906
694
|
"params": "(value)",
|
|
1907
695
|
"returns": "this",
|
|
1908
|
-
"description": "Set
|
|
696
|
+
"description": "Set message"
|
|
1909
697
|
},
|
|
1910
698
|
{
|
|
1911
|
-
"name": "
|
|
699
|
+
"name": "confirmText",
|
|
1912
700
|
"params": "(value)",
|
|
1913
701
|
"returns": "this",
|
|
1914
|
-
"description": "Set
|
|
702
|
+
"description": "Set confirmText"
|
|
1915
703
|
},
|
|
1916
704
|
{
|
|
1917
|
-
"name": "
|
|
705
|
+
"name": "cancelText",
|
|
1918
706
|
"params": "(value)",
|
|
1919
707
|
"returns": "this",
|
|
1920
|
-
"description": "Set
|
|
708
|
+
"description": "Set cancelText"
|
|
1921
709
|
},
|
|
1922
710
|
{
|
|
1923
|
-
"name": "
|
|
711
|
+
"name": "variant",
|
|
1924
712
|
"params": "(value)",
|
|
1925
713
|
"returns": "this",
|
|
1926
|
-
"description": "Set
|
|
714
|
+
"description": "Set variant"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "open",
|
|
718
|
+
"params": "()",
|
|
719
|
+
"returns": "this",
|
|
720
|
+
"description": "Set open"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"name": "close",
|
|
724
|
+
"params": "()",
|
|
725
|
+
"returns": "this",
|
|
726
|
+
"description": "Set close"
|
|
1927
727
|
},
|
|
728
|
+
{
|
|
729
|
+
"name": "render",
|
|
730
|
+
"params": "(targetId?)",
|
|
731
|
+
"returns": "this",
|
|
732
|
+
"description": "Set render"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"example": "jux.dialog('id').render()"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "Divider",
|
|
739
|
+
"category": "UI Components",
|
|
740
|
+
"description": "Divider component",
|
|
741
|
+
"constructor": "jux.divider(options: DividerOptions = {})",
|
|
742
|
+
"fluentMethods": [
|
|
1928
743
|
{
|
|
1929
744
|
"name": "text",
|
|
1930
745
|
"params": "(value)",
|
|
@@ -1932,10 +747,10 @@
|
|
|
1932
747
|
"description": "Set text"
|
|
1933
748
|
},
|
|
1934
749
|
{
|
|
1935
|
-
"name": "
|
|
750
|
+
"name": "orientation",
|
|
1936
751
|
"params": "(value)",
|
|
1937
752
|
"returns": "this",
|
|
1938
|
-
"description": "Set
|
|
753
|
+
"description": "Set orientation"
|
|
1939
754
|
},
|
|
1940
755
|
{
|
|
1941
756
|
"name": "style",
|
|
@@ -1962,100 +777,136 @@
|
|
|
1962
777
|
"description": "Set renderTo"
|
|
1963
778
|
}
|
|
1964
779
|
],
|
|
1965
|
-
"example": "jux.
|
|
780
|
+
"example": "jux.divider('id').render()"
|
|
1966
781
|
},
|
|
1967
782
|
{
|
|
1968
|
-
"name": "
|
|
783
|
+
"name": "Dropdown",
|
|
1969
784
|
"category": "UI Components",
|
|
1970
|
-
"description": "
|
|
1971
|
-
"constructor": "jux.
|
|
785
|
+
"description": "Dropdown component",
|
|
786
|
+
"constructor": "jux.dropdown(id: string, options: DropdownOptions = {})",
|
|
1972
787
|
"fluentMethods": [
|
|
1973
788
|
{
|
|
1974
|
-
"name": "
|
|
789
|
+
"name": "trigger",
|
|
1975
790
|
"params": "(value)",
|
|
1976
791
|
"returns": "this",
|
|
1977
|
-
"description": "Set
|
|
792
|
+
"description": "Set trigger"
|
|
1978
793
|
},
|
|
1979
794
|
{
|
|
1980
|
-
"name": "
|
|
795
|
+
"name": "items",
|
|
1981
796
|
"params": "(value)",
|
|
1982
797
|
"returns": "this",
|
|
1983
|
-
"description": "Set
|
|
798
|
+
"description": "Set items"
|
|
1984
799
|
},
|
|
1985
800
|
{
|
|
1986
|
-
"name": "
|
|
801
|
+
"name": "position",
|
|
1987
802
|
"params": "(value)",
|
|
1988
803
|
"returns": "this",
|
|
1989
|
-
"description": "Set
|
|
804
|
+
"description": "Set position"
|
|
1990
805
|
},
|
|
1991
806
|
{
|
|
1992
|
-
"name": "
|
|
1993
|
-
"params": "(
|
|
807
|
+
"name": "open",
|
|
808
|
+
"params": "()",
|
|
1994
809
|
"returns": "this",
|
|
1995
|
-
"description": "Set
|
|
810
|
+
"description": "Set open"
|
|
1996
811
|
},
|
|
1997
812
|
{
|
|
1998
|
-
"name": "
|
|
1999
|
-
"params": "(
|
|
813
|
+
"name": "close",
|
|
814
|
+
"params": "()",
|
|
2000
815
|
"returns": "this",
|
|
2001
|
-
"description": "Set
|
|
816
|
+
"description": "Set close"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "toggle",
|
|
820
|
+
"params": "()",
|
|
821
|
+
"returns": "this",
|
|
822
|
+
"description": "Set toggle"
|
|
2002
823
|
},
|
|
2003
824
|
{
|
|
2004
825
|
"name": "render",
|
|
2005
826
|
"params": "(targetId?)",
|
|
2006
827
|
"returns": "this",
|
|
2007
828
|
"description": "Set render"
|
|
2008
|
-
}
|
|
829
|
+
}
|
|
830
|
+
],
|
|
831
|
+
"example": "jux.dropdown('id').render()"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"name": "Element",
|
|
835
|
+
"category": "UI Components",
|
|
836
|
+
"description": "Append child component or HTML element",
|
|
837
|
+
"constructor": "jux.element(id: string, options: ElementOptions = {})",
|
|
838
|
+
"fluentMethods": [
|
|
2009
839
|
{
|
|
2010
|
-
"name": "
|
|
2011
|
-
"params": "(
|
|
840
|
+
"name": "render",
|
|
841
|
+
"params": "(targetId?)",
|
|
2012
842
|
"returns": "this",
|
|
2013
|
-
"description": "Set
|
|
843
|
+
"description": "Set render"
|
|
2014
844
|
}
|
|
2015
845
|
],
|
|
2016
|
-
"example": "
|
|
846
|
+
"example": "jux.element('id').render()"
|
|
2017
847
|
},
|
|
2018
848
|
{
|
|
2019
|
-
"name": "
|
|
849
|
+
"name": "Fileupload",
|
|
2020
850
|
"category": "UI Components",
|
|
2021
|
-
"description": "
|
|
2022
|
-
"constructor": "jux.
|
|
851
|
+
"description": "Fileupload component",
|
|
852
|
+
"constructor": "jux.fileupload(id: string, options: FileUploadOptions = {})",
|
|
2023
853
|
"fluentMethods": [
|
|
2024
854
|
{
|
|
2025
|
-
"name": "
|
|
855
|
+
"name": "accept",
|
|
2026
856
|
"params": "(value)",
|
|
2027
857
|
"returns": "this",
|
|
2028
|
-
"description": "Set
|
|
858
|
+
"description": "Set accept"
|
|
2029
859
|
},
|
|
2030
860
|
{
|
|
2031
|
-
"name": "
|
|
861
|
+
"name": "multiple",
|
|
2032
862
|
"params": "(value)",
|
|
2033
863
|
"returns": "this",
|
|
2034
|
-
"description": "Set
|
|
864
|
+
"description": "Set multiple"
|
|
2035
865
|
},
|
|
2036
866
|
{
|
|
2037
|
-
"name": "
|
|
867
|
+
"name": "icon",
|
|
2038
868
|
"params": "(value)",
|
|
2039
869
|
"returns": "this",
|
|
2040
|
-
"description": "Set
|
|
870
|
+
"description": "Set icon"
|
|
2041
871
|
},
|
|
2042
872
|
{
|
|
2043
|
-
"name": "
|
|
2044
|
-
"params": "(
|
|
873
|
+
"name": "clear",
|
|
874
|
+
"params": "()",
|
|
2045
875
|
"returns": "this",
|
|
2046
|
-
"description": "Set
|
|
876
|
+
"description": "Set clear"
|
|
2047
877
|
},
|
|
2048
878
|
{
|
|
2049
|
-
"name": "
|
|
2050
|
-
"params": "(
|
|
879
|
+
"name": "setValue",
|
|
880
|
+
"params": "(files)",
|
|
2051
881
|
"returns": "this",
|
|
2052
|
-
"description": "Set
|
|
882
|
+
"description": "Set setValue"
|
|
2053
883
|
},
|
|
2054
884
|
{
|
|
2055
|
-
"name": "
|
|
2056
|
-
"params": "(
|
|
885
|
+
"name": "render",
|
|
886
|
+
"params": "(targetId?)",
|
|
2057
887
|
"returns": "this",
|
|
2058
|
-
"description": "Set
|
|
888
|
+
"description": "Set render"
|
|
889
|
+
}
|
|
890
|
+
],
|
|
891
|
+
"example": "jux.fileupload('id').render()"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"name": "Guard",
|
|
895
|
+
"category": "UI Components",
|
|
896
|
+
"description": "⚠️ DEPRECATED: Guard component is no longer supported after removing global middleware.",
|
|
897
|
+
"constructor": "jux.guard(id: string, options?: GuardOptions)",
|
|
898
|
+
"fluentMethods": [
|
|
899
|
+
{
|
|
900
|
+
"name": "requireAuth",
|
|
901
|
+
"params": "(authState, loginPath?)",
|
|
902
|
+
"returns": "this",
|
|
903
|
+
"description": "Set requireAuth"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"name": "protect",
|
|
907
|
+
"params": "(...paths)",
|
|
908
|
+
"returns": "this",
|
|
909
|
+
"description": "Set protect"
|
|
2059
910
|
},
|
|
2060
911
|
{
|
|
2061
912
|
"name": "render",
|
|
@@ -2064,18 +915,18 @@
|
|
|
2064
915
|
"description": "Set render"
|
|
2065
916
|
},
|
|
2066
917
|
{
|
|
2067
|
-
"name": "
|
|
2068
|
-
"params": "(
|
|
918
|
+
"name": "deactivate",
|
|
919
|
+
"params": "()",
|
|
2069
920
|
"returns": "this",
|
|
2070
|
-
"description": "Set
|
|
921
|
+
"description": "Set deactivate"
|
|
2071
922
|
}
|
|
2072
923
|
],
|
|
2073
|
-
"example": "
|
|
924
|
+
"example": "jux.guard('id').render()"
|
|
2074
925
|
},
|
|
2075
926
|
{
|
|
2076
927
|
"name": "Heading",
|
|
2077
928
|
"category": "UI Components",
|
|
2078
|
-
"description": "Heading
|
|
929
|
+
"description": "Heading component",
|
|
2079
930
|
"constructor": "jux.heading(id: string, options: HeadingOptions = {})",
|
|
2080
931
|
"fluentMethods": [
|
|
2081
932
|
{
|
|
@@ -2090,18 +941,6 @@
|
|
|
2090
941
|
"returns": "this",
|
|
2091
942
|
"description": "Set text"
|
|
2092
943
|
},
|
|
2093
|
-
{
|
|
2094
|
-
"name": "class",
|
|
2095
|
-
"params": "(value)",
|
|
2096
|
-
"returns": "this",
|
|
2097
|
-
"description": "Set class"
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
"name": "style",
|
|
2101
|
-
"params": "(value)",
|
|
2102
|
-
"returns": "this",
|
|
2103
|
-
"description": "Set style"
|
|
2104
|
-
},
|
|
2105
944
|
{
|
|
2106
945
|
"name": "render",
|
|
2107
946
|
"params": "(targetId?)",
|
|
@@ -2109,7 +948,7 @@
|
|
|
2109
948
|
"description": "Set render"
|
|
2110
949
|
}
|
|
2111
950
|
],
|
|
2112
|
-
"example": "jux.heading('
|
|
951
|
+
"example": "jux.heading('id').render()"
|
|
2113
952
|
},
|
|
2114
953
|
{
|
|
2115
954
|
"name": "Helpers",
|
|
@@ -2122,7 +961,7 @@
|
|
|
2122
961
|
{
|
|
2123
962
|
"name": "Hero",
|
|
2124
963
|
"category": "UI Components",
|
|
2125
|
-
"description": "Hero component
|
|
964
|
+
"description": "Hero component",
|
|
2126
965
|
"constructor": "jux.hero(id: string, options: HeroOptions = {})",
|
|
2127
966
|
"fluentMethods": [
|
|
2128
967
|
{
|
|
@@ -2162,31 +1001,60 @@
|
|
|
2162
1001
|
"description": "Set variant"
|
|
2163
1002
|
},
|
|
2164
1003
|
{
|
|
2165
|
-
"name": "
|
|
1004
|
+
"name": "render",
|
|
1005
|
+
"params": "(targetId?)",
|
|
1006
|
+
"returns": "this",
|
|
1007
|
+
"description": "Set render"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"example": "jux.hero('id').render()"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"name": "Icon",
|
|
1014
|
+
"category": "UI Components",
|
|
1015
|
+
"description": "Icon component",
|
|
1016
|
+
"constructor": "jux.icon(id: string, options: IconOptions)",
|
|
1017
|
+
"fluentMethods": [
|
|
1018
|
+
{
|
|
1019
|
+
"name": "value",
|
|
2166
1020
|
"params": "(value)",
|
|
2167
1021
|
"returns": "this",
|
|
2168
|
-
"description": "Set
|
|
1022
|
+
"description": "Set value"
|
|
2169
1023
|
},
|
|
2170
1024
|
{
|
|
2171
|
-
"name": "
|
|
1025
|
+
"name": "size",
|
|
2172
1026
|
"params": "(value)",
|
|
2173
1027
|
"returns": "this",
|
|
2174
|
-
"description": "Set
|
|
1028
|
+
"description": "Set size"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "color",
|
|
1032
|
+
"params": "(value)",
|
|
1033
|
+
"returns": "this",
|
|
1034
|
+
"description": "Set color"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"name": "useEmoji",
|
|
1038
|
+
"params": "(value)",
|
|
1039
|
+
"returns": "this",
|
|
1040
|
+
"description": "Set useEmoji"
|
|
2175
1041
|
},
|
|
2176
1042
|
{
|
|
2177
1043
|
"name": "render",
|
|
2178
1044
|
"params": "(targetId?)",
|
|
2179
1045
|
"returns": "this",
|
|
2180
1046
|
"description": "Set render"
|
|
2181
|
-
},
|
|
2182
|
-
{
|
|
2183
|
-
"name": "renderTo",
|
|
2184
|
-
"params": "(juxComponent)",
|
|
2185
|
-
"returns": "this",
|
|
2186
|
-
"description": "Set renderTo"
|
|
2187
1047
|
}
|
|
2188
1048
|
],
|
|
2189
|
-
"example": "
|
|
1049
|
+
"example": "jux.icon('id').render()"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "Icons",
|
|
1053
|
+
"category": "UI Components",
|
|
1054
|
+
"description": "Icon utilities for components",
|
|
1055
|
+
"constructor": "jux.icons(value: string)",
|
|
1056
|
+
"fluentMethods": [],
|
|
1057
|
+
"example": "const icon = renderIcon('🚀'); // Lucide rocket icon"
|
|
2190
1058
|
},
|
|
2191
1059
|
{
|
|
2192
1060
|
"name": "Include",
|
|
@@ -2236,6 +1104,24 @@
|
|
|
2236
1104
|
"returns": "this",
|
|
2237
1105
|
"description": "Set withPrefetch"
|
|
2238
1106
|
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "withJson",
|
|
1109
|
+
"params": "()",
|
|
1110
|
+
"returns": "this",
|
|
1111
|
+
"description": "Set withJson"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "asScript",
|
|
1115
|
+
"params": "(options?)",
|
|
1116
|
+
"returns": "this",
|
|
1117
|
+
"description": "Set asScript"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "asStylesheet",
|
|
1121
|
+
"params": "()",
|
|
1122
|
+
"returns": "this",
|
|
1123
|
+
"description": "Set asStylesheet"
|
|
1124
|
+
},
|
|
2239
1125
|
{
|
|
2240
1126
|
"name": "with",
|
|
2241
1127
|
"params": "(options)",
|
|
@@ -2291,12 +1177,12 @@
|
|
|
2291
1177
|
"description": "Set remove"
|
|
2292
1178
|
}
|
|
2293
1179
|
],
|
|
2294
|
-
"example": "jux.include('
|
|
1180
|
+
"example": "const config = await jux.include('config.json').asJson();"
|
|
2295
1181
|
},
|
|
2296
1182
|
{
|
|
2297
1183
|
"name": "Input",
|
|
2298
1184
|
"category": "UI Components",
|
|
2299
|
-
"description": "Input component
|
|
1185
|
+
"description": "Input component",
|
|
2300
1186
|
"constructor": "jux.input(id: string, options: InputOptions = {})",
|
|
2301
1187
|
"fluentMethods": [
|
|
2302
1188
|
{
|
|
@@ -2318,28 +1204,10 @@
|
|
|
2318
1204
|
"description": "Set placeholder"
|
|
2319
1205
|
},
|
|
2320
1206
|
{
|
|
2321
|
-
"name": "
|
|
2322
|
-
"params": "(value)",
|
|
2323
|
-
"returns": "this",
|
|
2324
|
-
"description": "Set label"
|
|
2325
|
-
},
|
|
2326
|
-
{
|
|
2327
|
-
"name": "required",
|
|
2328
|
-
"params": "(value)",
|
|
2329
|
-
"returns": "this",
|
|
2330
|
-
"description": "Set required"
|
|
2331
|
-
},
|
|
2332
|
-
{
|
|
2333
|
-
"name": "disabled",
|
|
2334
|
-
"params": "(value)",
|
|
2335
|
-
"returns": "this",
|
|
2336
|
-
"description": "Set disabled"
|
|
2337
|
-
},
|
|
2338
|
-
{
|
|
2339
|
-
"name": "name",
|
|
1207
|
+
"name": "icon",
|
|
2340
1208
|
"params": "(value)",
|
|
2341
1209
|
"returns": "this",
|
|
2342
|
-
"description": "Set
|
|
1210
|
+
"description": "Set icon"
|
|
2343
1211
|
},
|
|
2344
1212
|
{
|
|
2345
1213
|
"name": "rows",
|
|
@@ -2384,40 +1252,16 @@
|
|
|
2384
1252
|
"description": "Set pattern"
|
|
2385
1253
|
},
|
|
2386
1254
|
{
|
|
2387
|
-
"name": "
|
|
2388
|
-
"params": "(value)",
|
|
2389
|
-
"returns": "this",
|
|
2390
|
-
"description": "Set style"
|
|
2391
|
-
},
|
|
2392
|
-
{
|
|
2393
|
-
"name": "class",
|
|
1255
|
+
"name": "setValue",
|
|
2394
1256
|
"params": "(value)",
|
|
2395
1257
|
"returns": "this",
|
|
2396
|
-
"description": "Set
|
|
2397
|
-
},
|
|
2398
|
-
{
|
|
2399
|
-
"name": "bind",
|
|
2400
|
-
"params": "(event, handler)",
|
|
2401
|
-
"returns": "this",
|
|
2402
|
-
"description": "Set bind"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"name": "sync",
|
|
2406
|
-
"params": "(property, stateObj, toState?, toComponent?)",
|
|
2407
|
-
"returns": "this",
|
|
2408
|
-
"description": "Set sync"
|
|
1258
|
+
"description": "Set setValue"
|
|
2409
1259
|
},
|
|
2410
1260
|
{
|
|
2411
1261
|
"name": "render",
|
|
2412
1262
|
"params": "(targetId?)",
|
|
2413
1263
|
"returns": "this",
|
|
2414
1264
|
"description": "Set render"
|
|
2415
|
-
},
|
|
2416
|
-
{
|
|
2417
|
-
"name": "renderTo",
|
|
2418
|
-
"params": "(juxComponent)",
|
|
2419
|
-
"returns": "this",
|
|
2420
|
-
"description": "Set renderTo"
|
|
2421
1265
|
}
|
|
2422
1266
|
],
|
|
2423
1267
|
"example": "jux.input('id').render()"
|
|
@@ -2530,7 +1374,7 @@
|
|
|
2530
1374
|
{
|
|
2531
1375
|
"name": "Loading",
|
|
2532
1376
|
"category": "UI Components",
|
|
2533
|
-
"description": "Loading component
|
|
1377
|
+
"description": "Loading component",
|
|
2534
1378
|
"constructor": "jux.loading(id: string, options: LoadingOptions = {})",
|
|
2535
1379
|
"fluentMethods": [
|
|
2536
1380
|
{
|
|
@@ -2545,94 +1389,19 @@
|
|
|
2545
1389
|
"returns": "this",
|
|
2546
1390
|
"description": "Set size"
|
|
2547
1391
|
},
|
|
2548
|
-
{
|
|
2549
|
-
"name": "text",
|
|
2550
|
-
"params": "(value)",
|
|
2551
|
-
"returns": "this",
|
|
2552
|
-
"description": "Set text"
|
|
2553
|
-
},
|
|
2554
|
-
{
|
|
2555
|
-
"name": "fullscreen",
|
|
2556
|
-
"params": "(value)",
|
|
2557
|
-
"returns": "this",
|
|
2558
|
-
"description": "Set fullscreen"
|
|
2559
|
-
},
|
|
2560
|
-
{
|
|
2561
|
-
"name": "style",
|
|
2562
|
-
"params": "(value)",
|
|
2563
|
-
"returns": "this",
|
|
2564
|
-
"description": "Set style"
|
|
2565
|
-
},
|
|
2566
|
-
{
|
|
2567
|
-
"name": "class",
|
|
2568
|
-
"params": "(value)",
|
|
2569
|
-
"returns": "this",
|
|
2570
|
-
"description": "Set class"
|
|
2571
|
-
},
|
|
2572
|
-
{
|
|
2573
|
-
"name": "render",
|
|
2574
|
-
"params": "(targetId?)",
|
|
2575
|
-
"returns": "this",
|
|
2576
|
-
"description": "Set render"
|
|
2577
|
-
},
|
|
2578
|
-
{
|
|
2579
|
-
"name": "renderTo",
|
|
2580
|
-
"params": "(juxComponent)",
|
|
2581
|
-
"returns": "this",
|
|
2582
|
-
"description": "Set renderTo"
|
|
2583
|
-
}
|
|
2584
|
-
],
|
|
2585
|
-
"example": "jux.loading('my-spinner', {"
|
|
2586
|
-
},
|
|
2587
|
-
{
|
|
2588
|
-
"name": "Main",
|
|
2589
|
-
"category": "UI Components",
|
|
2590
|
-
"description": "Main component options",
|
|
2591
|
-
"constructor": "jux.main(id: string, options: MainOptions = {})",
|
|
2592
|
-
"fluentMethods": [
|
|
2593
|
-
{
|
|
2594
|
-
"name": "content",
|
|
2595
|
-
"params": "(value)",
|
|
2596
|
-
"returns": "this",
|
|
2597
|
-
"description": "Set content"
|
|
2598
|
-
},
|
|
2599
|
-
{
|
|
2600
|
-
"name": "padding",
|
|
2601
|
-
"params": "(value)",
|
|
2602
|
-
"returns": "this",
|
|
2603
|
-
"description": "Set padding"
|
|
2604
|
-
},
|
|
2605
|
-
{
|
|
2606
|
-
"name": "style",
|
|
2607
|
-
"params": "(value)",
|
|
2608
|
-
"returns": "this",
|
|
2609
|
-
"description": "Set style"
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"name": "class",
|
|
2613
|
-
"params": "(value)",
|
|
2614
|
-
"returns": "this",
|
|
2615
|
-
"description": "Set class"
|
|
2616
|
-
},
|
|
2617
1392
|
{
|
|
2618
1393
|
"name": "render",
|
|
2619
1394
|
"params": "(targetId?)",
|
|
2620
1395
|
"returns": "this",
|
|
2621
1396
|
"description": "Set render"
|
|
2622
|
-
},
|
|
2623
|
-
{
|
|
2624
|
-
"name": "renderTo",
|
|
2625
|
-
"params": "(juxComponent)",
|
|
2626
|
-
"returns": "this",
|
|
2627
|
-
"description": "Set renderTo"
|
|
2628
1397
|
}
|
|
2629
1398
|
],
|
|
2630
|
-
"example": "
|
|
1399
|
+
"example": "jux.loading('id').render()"
|
|
2631
1400
|
},
|
|
2632
1401
|
{
|
|
2633
1402
|
"name": "Menu",
|
|
2634
1403
|
"category": "UI Components",
|
|
2635
|
-
"description": "Menu
|
|
1404
|
+
"description": "Menu component",
|
|
2636
1405
|
"constructor": "jux.menu(id: string, options: MenuOptions = {})",
|
|
2637
1406
|
"fluentMethods": [
|
|
2638
1407
|
{
|
|
@@ -2648,42 +1417,30 @@
|
|
|
2648
1417
|
"description": "Set addItem"
|
|
2649
1418
|
},
|
|
2650
1419
|
{
|
|
2651
|
-
"name": "
|
|
2652
|
-
"params": "(
|
|
2653
|
-
"returns": "this",
|
|
2654
|
-
"description": "Set orientation"
|
|
2655
|
-
},
|
|
2656
|
-
{
|
|
2657
|
-
"name": "style",
|
|
2658
|
-
"params": "(value)",
|
|
1420
|
+
"name": "itemClass",
|
|
1421
|
+
"params": "(className)",
|
|
2659
1422
|
"returns": "this",
|
|
2660
|
-
"description": "Set
|
|
1423
|
+
"description": "Set itemClass"
|
|
2661
1424
|
},
|
|
2662
1425
|
{
|
|
2663
|
-
"name": "
|
|
1426
|
+
"name": "orientation",
|
|
2664
1427
|
"params": "(value)",
|
|
2665
1428
|
"returns": "this",
|
|
2666
|
-
"description": "Set
|
|
1429
|
+
"description": "Set orientation"
|
|
2667
1430
|
},
|
|
2668
1431
|
{
|
|
2669
1432
|
"name": "render",
|
|
2670
1433
|
"params": "(targetId?)",
|
|
2671
1434
|
"returns": "this",
|
|
2672
1435
|
"description": "Set render"
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"name": "renderTo",
|
|
2676
|
-
"params": "(juxComponent)",
|
|
2677
|
-
"returns": "this",
|
|
2678
|
-
"description": "Set renderTo"
|
|
2679
1436
|
}
|
|
2680
1437
|
],
|
|
2681
|
-
"example": "
|
|
1438
|
+
"example": "jux.menu('id').render()"
|
|
2682
1439
|
},
|
|
2683
1440
|
{
|
|
2684
1441
|
"name": "Modal",
|
|
2685
1442
|
"category": "UI Components",
|
|
2686
|
-
"description": "Modal component
|
|
1443
|
+
"description": "Modal component",
|
|
2687
1444
|
"constructor": "jux.modal(id: string, options: ModalOptions = {})",
|
|
2688
1445
|
"fluentMethods": [
|
|
2689
1446
|
{
|
|
@@ -2716,18 +1473,6 @@
|
|
|
2716
1473
|
"returns": "this",
|
|
2717
1474
|
"description": "Set size"
|
|
2718
1475
|
},
|
|
2719
|
-
{
|
|
2720
|
-
"name": "style",
|
|
2721
|
-
"params": "(value)",
|
|
2722
|
-
"returns": "this",
|
|
2723
|
-
"description": "Set style"
|
|
2724
|
-
},
|
|
2725
|
-
{
|
|
2726
|
-
"name": "class",
|
|
2727
|
-
"params": "(value)",
|
|
2728
|
-
"returns": "this",
|
|
2729
|
-
"description": "Set class"
|
|
2730
|
-
},
|
|
2731
1476
|
{
|
|
2732
1477
|
"name": "open",
|
|
2733
1478
|
"params": "()",
|
|
@@ -2745,20 +1490,14 @@
|
|
|
2745
1490
|
"params": "(targetId?)",
|
|
2746
1491
|
"returns": "this",
|
|
2747
1492
|
"description": "Set render"
|
|
2748
|
-
},
|
|
2749
|
-
{
|
|
2750
|
-
"name": "renderTo",
|
|
2751
|
-
"params": "(juxComponent)",
|
|
2752
|
-
"returns": "this",
|
|
2753
|
-
"description": "Set renderTo"
|
|
2754
1493
|
}
|
|
2755
1494
|
],
|
|
2756
|
-
"example": "
|
|
1495
|
+
"example": "jux.modal('id').render()"
|
|
2757
1496
|
},
|
|
2758
1497
|
{
|
|
2759
1498
|
"name": "Nav",
|
|
2760
1499
|
"category": "UI Components",
|
|
2761
|
-
"description": "Nav
|
|
1500
|
+
"description": "Nav component",
|
|
2762
1501
|
"constructor": "jux.nav(id: string, options: NavOptions = {})",
|
|
2763
1502
|
"fluentMethods": [
|
|
2764
1503
|
{
|
|
@@ -2774,73 +1513,28 @@
|
|
|
2774
1513
|
"description": "Set addItem"
|
|
2775
1514
|
},
|
|
2776
1515
|
{
|
|
2777
|
-
"name": "
|
|
2778
|
-
"params": "(
|
|
2779
|
-
"returns": "this",
|
|
2780
|
-
"description": "Set variant"
|
|
2781
|
-
},
|
|
2782
|
-
{
|
|
2783
|
-
"name": "style",
|
|
2784
|
-
"params": "(value)",
|
|
2785
|
-
"returns": "this",
|
|
2786
|
-
"description": "Set style"
|
|
2787
|
-
},
|
|
2788
|
-
{
|
|
2789
|
-
"name": "class",
|
|
2790
|
-
"params": "(value)",
|
|
2791
|
-
"returns": "this",
|
|
2792
|
-
"description": "Set class"
|
|
2793
|
-
},
|
|
2794
|
-
{
|
|
2795
|
-
"name": "render",
|
|
2796
|
-
"params": "(targetId?)",
|
|
1516
|
+
"name": "itemClass",
|
|
1517
|
+
"params": "(className)",
|
|
2797
1518
|
"returns": "this",
|
|
2798
|
-
"description": "Set
|
|
1519
|
+
"description": "Set itemClass"
|
|
2799
1520
|
},
|
|
2800
1521
|
{
|
|
2801
|
-
"name": "
|
|
2802
|
-
"params": "(juxComponent)",
|
|
2803
|
-
"returns": "this",
|
|
2804
|
-
"description": "Set renderTo"
|
|
2805
|
-
}
|
|
2806
|
-
],
|
|
2807
|
-
"example": "const nav = jux.nav('myNav', {"
|
|
2808
|
-
},
|
|
2809
|
-
{
|
|
2810
|
-
"name": "Paragraph",
|
|
2811
|
-
"category": "UI Components",
|
|
2812
|
-
"description": "Paragraph options",
|
|
2813
|
-
"constructor": "jux.paragraph(id: string, options: ParagraphOptions = {})",
|
|
2814
|
-
"fluentMethods": [
|
|
2815
|
-
{
|
|
2816
|
-
"name": "text",
|
|
1522
|
+
"name": "brand",
|
|
2817
1523
|
"params": "(value)",
|
|
2818
1524
|
"returns": "this",
|
|
2819
|
-
"description": "Set
|
|
1525
|
+
"description": "Set brand"
|
|
2820
1526
|
},
|
|
2821
1527
|
{
|
|
2822
|
-
"name": "
|
|
1528
|
+
"name": "variant",
|
|
2823
1529
|
"params": "(value)",
|
|
2824
1530
|
"returns": "this",
|
|
2825
|
-
"description": "Set
|
|
1531
|
+
"description": "Set variant"
|
|
2826
1532
|
},
|
|
2827
1533
|
{
|
|
2828
|
-
"name": "
|
|
1534
|
+
"name": "sticky",
|
|
2829
1535
|
"params": "(value)",
|
|
2830
1536
|
"returns": "this",
|
|
2831
|
-
"description": "Set
|
|
2832
|
-
},
|
|
2833
|
-
{
|
|
2834
|
-
"name": "bind",
|
|
2835
|
-
"params": "(property, source, transform?)",
|
|
2836
|
-
"returns": "this",
|
|
2837
|
-
"description": "Set bind"
|
|
2838
|
-
},
|
|
2839
|
-
{
|
|
2840
|
-
"name": "sync",
|
|
2841
|
-
"params": "(property, stateObj, transform?)",
|
|
2842
|
-
"returns": "this",
|
|
2843
|
-
"description": "Set sync"
|
|
1537
|
+
"description": "Set sticky"
|
|
2844
1538
|
},
|
|
2845
1539
|
{
|
|
2846
1540
|
"name": "render",
|
|
@@ -2849,99 +1543,72 @@
|
|
|
2849
1543
|
"description": "Set render"
|
|
2850
1544
|
}
|
|
2851
1545
|
],
|
|
2852
|
-
"example": "jux.
|
|
1546
|
+
"example": "jux.nav('id').render()"
|
|
2853
1547
|
},
|
|
2854
1548
|
{
|
|
2855
|
-
"name": "
|
|
1549
|
+
"name": "Paragraph",
|
|
2856
1550
|
"category": "UI Components",
|
|
2857
|
-
"description": "
|
|
2858
|
-
"constructor": "jux.
|
|
1551
|
+
"description": "Paragraph component",
|
|
1552
|
+
"constructor": "jux.paragraph(id: string, options: ParagraphOptions = {})",
|
|
2859
1553
|
"fluentMethods": [
|
|
2860
1554
|
{
|
|
2861
|
-
"name": "
|
|
2862
|
-
"params": "(value)",
|
|
2863
|
-
"returns": "this",
|
|
2864
|
-
"description": "Set value"
|
|
2865
|
-
},
|
|
2866
|
-
{
|
|
2867
|
-
"name": "max",
|
|
2868
|
-
"params": "(value)",
|
|
2869
|
-
"returns": "this",
|
|
2870
|
-
"description": "Set max"
|
|
2871
|
-
},
|
|
2872
|
-
{
|
|
2873
|
-
"name": "label",
|
|
2874
|
-
"params": "(value)",
|
|
2875
|
-
"returns": "this",
|
|
2876
|
-
"description": "Set label"
|
|
2877
|
-
},
|
|
2878
|
-
{
|
|
2879
|
-
"name": "showPercentage",
|
|
2880
|
-
"params": "(value)",
|
|
2881
|
-
"returns": "this",
|
|
2882
|
-
"description": "Set showPercentage"
|
|
2883
|
-
},
|
|
2884
|
-
{
|
|
2885
|
-
"name": "variant",
|
|
2886
|
-
"params": "(value)",
|
|
2887
|
-
"returns": "this",
|
|
2888
|
-
"description": "Set variant"
|
|
2889
|
-
},
|
|
2890
|
-
{
|
|
2891
|
-
"name": "size",
|
|
2892
|
-
"params": "(value)",
|
|
2893
|
-
"returns": "this",
|
|
2894
|
-
"description": "Set size"
|
|
2895
|
-
},
|
|
2896
|
-
{
|
|
2897
|
-
"name": "striped",
|
|
1555
|
+
"name": "text",
|
|
2898
1556
|
"params": "(value)",
|
|
2899
1557
|
"returns": "this",
|
|
2900
|
-
"description": "Set
|
|
1558
|
+
"description": "Set text"
|
|
2901
1559
|
},
|
|
2902
1560
|
{
|
|
2903
|
-
"name": "
|
|
2904
|
-
"params": "(
|
|
1561
|
+
"name": "render",
|
|
1562
|
+
"params": "(targetId?)",
|
|
2905
1563
|
"returns": "this",
|
|
2906
|
-
"description": "Set
|
|
1564
|
+
"description": "Set render"
|
|
1565
|
+
}
|
|
1566
|
+
],
|
|
1567
|
+
"example": "jux.paragraph('id').render()"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"name": "Progress",
|
|
1571
|
+
"category": "UI Components",
|
|
1572
|
+
"description": "Progress component",
|
|
1573
|
+
"constructor": "jux.progress(id: string, options: ProgressOptions = {})",
|
|
1574
|
+
"fluentMethods": [
|
|
1575
|
+
{
|
|
1576
|
+
"name": "value",
|
|
1577
|
+
"params": "(val)",
|
|
1578
|
+
"returns": "this",
|
|
1579
|
+
"description": "Set value"
|
|
2907
1580
|
},
|
|
2908
1581
|
{
|
|
2909
|
-
"name": "
|
|
2910
|
-
"params": "(
|
|
1582
|
+
"name": "max",
|
|
1583
|
+
"params": "(val)",
|
|
2911
1584
|
"returns": "this",
|
|
2912
|
-
"description": "Set
|
|
1585
|
+
"description": "Set max"
|
|
2913
1586
|
},
|
|
2914
1587
|
{
|
|
2915
|
-
"name": "
|
|
1588
|
+
"name": "variant",
|
|
2916
1589
|
"params": "(value)",
|
|
2917
1590
|
"returns": "this",
|
|
2918
|
-
"description": "Set
|
|
1591
|
+
"description": "Set variant"
|
|
2919
1592
|
},
|
|
2920
1593
|
{
|
|
2921
|
-
"name": "
|
|
2922
|
-
"params": "(
|
|
1594
|
+
"name": "showPercentage",
|
|
1595
|
+
"params": "(value)",
|
|
2923
1596
|
"returns": "this",
|
|
2924
|
-
"description": "Set
|
|
1597
|
+
"description": "Set showPercentage"
|
|
2925
1598
|
},
|
|
2926
1599
|
{
|
|
2927
1600
|
"name": "render",
|
|
2928
1601
|
"params": "(targetId?)",
|
|
2929
1602
|
"returns": "this",
|
|
2930
1603
|
"description": "Set render"
|
|
2931
|
-
},
|
|
2932
|
-
{
|
|
2933
|
-
"name": "renderTo",
|
|
2934
|
-
"params": "(juxComponent)",
|
|
2935
|
-
"returns": "this",
|
|
2936
|
-
"description": "Set renderTo"
|
|
2937
1604
|
}
|
|
2938
1605
|
],
|
|
2939
|
-
"example": "jux.progress('
|
|
1606
|
+
"example": "jux.progress('id').render()"
|
|
2940
1607
|
},
|
|
2941
1608
|
{
|
|
2942
1609
|
"name": "Radio",
|
|
2943
1610
|
"category": "UI Components",
|
|
2944
|
-
"description": "Radio
|
|
1611
|
+
"description": "Radio component",
|
|
2945
1612
|
"constructor": "jux.radio(id: string, options: RadioOptions = {})",
|
|
2946
1613
|
"fluentMethods": [
|
|
2947
1614
|
{
|
|
@@ -2950,12 +1617,6 @@
|
|
|
2950
1617
|
"returns": "this",
|
|
2951
1618
|
"description": "Set options"
|
|
2952
1619
|
},
|
|
2953
|
-
{
|
|
2954
|
-
"name": "addOption",
|
|
2955
|
-
"params": "(option)",
|
|
2956
|
-
"returns": "this",
|
|
2957
|
-
"description": "Set addOption"
|
|
2958
|
-
},
|
|
2959
1620
|
{
|
|
2960
1621
|
"name": "value",
|
|
2961
1622
|
"params": "(value)",
|
|
@@ -2963,10 +1624,10 @@
|
|
|
2963
1624
|
"description": "Set value"
|
|
2964
1625
|
},
|
|
2965
1626
|
{
|
|
2966
|
-
"name": "
|
|
2967
|
-
"params": "(
|
|
1627
|
+
"name": "addOption",
|
|
1628
|
+
"params": "(option)",
|
|
2968
1629
|
"returns": "this",
|
|
2969
|
-
"description": "Set
|
|
1630
|
+
"description": "Set addOption"
|
|
2970
1631
|
},
|
|
2971
1632
|
{
|
|
2972
1633
|
"name": "orientation",
|
|
@@ -2975,37 +1636,19 @@
|
|
|
2975
1636
|
"description": "Set orientation"
|
|
2976
1637
|
},
|
|
2977
1638
|
{
|
|
2978
|
-
"name": "
|
|
2979
|
-
"params": "(value)",
|
|
2980
|
-
"returns": "this",
|
|
2981
|
-
"description": "Set style"
|
|
2982
|
-
},
|
|
2983
|
-
{
|
|
2984
|
-
"name": "class",
|
|
1639
|
+
"name": "setValue",
|
|
2985
1640
|
"params": "(value)",
|
|
2986
1641
|
"returns": "this",
|
|
2987
|
-
"description": "Set
|
|
2988
|
-
},
|
|
2989
|
-
{
|
|
2990
|
-
"name": "bind",
|
|
2991
|
-
"params": "(stateObj)",
|
|
2992
|
-
"returns": "this",
|
|
2993
|
-
"description": "Set bind"
|
|
1642
|
+
"description": "Set setValue"
|
|
2994
1643
|
},
|
|
2995
1644
|
{
|
|
2996
1645
|
"name": "render",
|
|
2997
1646
|
"params": "(targetId?)",
|
|
2998
1647
|
"returns": "this",
|
|
2999
1648
|
"description": "Set render"
|
|
3000
|
-
},
|
|
3001
|
-
{
|
|
3002
|
-
"name": "renderTo",
|
|
3003
|
-
"params": "(juxComponent)",
|
|
3004
|
-
"returns": "this",
|
|
3005
|
-
"description": "Set renderTo"
|
|
3006
1649
|
}
|
|
3007
1650
|
],
|
|
3008
|
-
"example": "jux.radio('
|
|
1651
|
+
"example": "jux.radio('id').render()"
|
|
3009
1652
|
},
|
|
3010
1653
|
{
|
|
3011
1654
|
"name": "Req",
|
|
@@ -3018,7 +1661,7 @@
|
|
|
3018
1661
|
{
|
|
3019
1662
|
"name": "Select",
|
|
3020
1663
|
"category": "UI Components",
|
|
3021
|
-
"description": "
|
|
1664
|
+
"description": "Select component",
|
|
3022
1665
|
"constructor": "jux.select(id: string, options: SelectOptions = {})",
|
|
3023
1666
|
"fluentMethods": [
|
|
3024
1667
|
{
|
|
@@ -3027,12 +1670,6 @@
|
|
|
3027
1670
|
"returns": "this",
|
|
3028
1671
|
"description": "Set options"
|
|
3029
1672
|
},
|
|
3030
|
-
{
|
|
3031
|
-
"name": "addOption",
|
|
3032
|
-
"params": "(option)",
|
|
3033
|
-
"returns": "this",
|
|
3034
|
-
"description": "Set addOption"
|
|
3035
|
-
},
|
|
3036
1673
|
{
|
|
3037
1674
|
"name": "value",
|
|
3038
1675
|
"params": "(value)",
|
|
@@ -3046,52 +1683,22 @@
|
|
|
3046
1683
|
"description": "Set placeholder"
|
|
3047
1684
|
},
|
|
3048
1685
|
{
|
|
3049
|
-
"name": "
|
|
3050
|
-
"params": "(
|
|
3051
|
-
"returns": "this",
|
|
3052
|
-
"description": "Set label"
|
|
3053
|
-
},
|
|
3054
|
-
{
|
|
3055
|
-
"name": "disabled",
|
|
3056
|
-
"params": "(value)",
|
|
3057
|
-
"returns": "this",
|
|
3058
|
-
"description": "Set disabled"
|
|
3059
|
-
},
|
|
3060
|
-
{
|
|
3061
|
-
"name": "name",
|
|
3062
|
-
"params": "(value)",
|
|
3063
|
-
"returns": "this",
|
|
3064
|
-
"description": "Set name"
|
|
3065
|
-
},
|
|
3066
|
-
{
|
|
3067
|
-
"name": "style",
|
|
3068
|
-
"params": "(value)",
|
|
1686
|
+
"name": "addOption",
|
|
1687
|
+
"params": "(option)",
|
|
3069
1688
|
"returns": "this",
|
|
3070
|
-
"description": "Set
|
|
1689
|
+
"description": "Set addOption"
|
|
3071
1690
|
},
|
|
3072
1691
|
{
|
|
3073
|
-
"name": "
|
|
1692
|
+
"name": "setValue",
|
|
3074
1693
|
"params": "(value)",
|
|
3075
1694
|
"returns": "this",
|
|
3076
|
-
"description": "Set
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"name": "bind",
|
|
3080
|
-
"params": "(stateObj)",
|
|
3081
|
-
"returns": "this",
|
|
3082
|
-
"description": "Set bind"
|
|
1695
|
+
"description": "Set setValue"
|
|
3083
1696
|
},
|
|
3084
1697
|
{
|
|
3085
1698
|
"name": "render",
|
|
3086
1699
|
"params": "(targetId?)",
|
|
3087
1700
|
"returns": "this",
|
|
3088
1701
|
"description": "Set render"
|
|
3089
|
-
},
|
|
3090
|
-
{
|
|
3091
|
-
"name": "renderTo",
|
|
3092
|
-
"params": "(juxComponent)",
|
|
3093
|
-
"returns": "this",
|
|
3094
|
-
"description": "Set renderTo"
|
|
3095
1702
|
}
|
|
3096
1703
|
],
|
|
3097
1704
|
"example": "jux.select('id').render()"
|
|
@@ -3099,15 +1706,9 @@
|
|
|
3099
1706
|
{
|
|
3100
1707
|
"name": "Sidebar",
|
|
3101
1708
|
"category": "UI Components",
|
|
3102
|
-
"description": "Sidebar component
|
|
1709
|
+
"description": "Sidebar component",
|
|
3103
1710
|
"constructor": "jux.sidebar(id: string, options: SidebarOptions = {})",
|
|
3104
1711
|
"fluentMethods": [
|
|
3105
|
-
{
|
|
3106
|
-
"name": "title",
|
|
3107
|
-
"params": "(value)",
|
|
3108
|
-
"returns": "this",
|
|
3109
|
-
"description": "Set title"
|
|
3110
|
-
},
|
|
3111
1712
|
{
|
|
3112
1713
|
"name": "width",
|
|
3113
1714
|
"params": "(value)",
|
|
@@ -3132,51 +1733,21 @@
|
|
|
3132
1733
|
"returns": "this",
|
|
3133
1734
|
"description": "Set collapsed"
|
|
3134
1735
|
},
|
|
3135
|
-
{
|
|
3136
|
-
"name": "style",
|
|
3137
|
-
"params": "(value)",
|
|
3138
|
-
"returns": "this",
|
|
3139
|
-
"description": "Set style"
|
|
3140
|
-
},
|
|
3141
|
-
{
|
|
3142
|
-
"name": "class",
|
|
3143
|
-
"params": "(value)",
|
|
3144
|
-
"returns": "this",
|
|
3145
|
-
"description": "Set class"
|
|
3146
|
-
},
|
|
3147
|
-
{
|
|
3148
|
-
"name": "toggle",
|
|
3149
|
-
"params": "()",
|
|
3150
|
-
"returns": "this",
|
|
3151
|
-
"description": "Set toggle"
|
|
3152
|
-
},
|
|
3153
1736
|
{
|
|
3154
1737
|
"name": "render",
|
|
3155
1738
|
"params": "(targetId?)",
|
|
3156
1739
|
"returns": "this",
|
|
3157
1740
|
"description": "Set render"
|
|
3158
|
-
},
|
|
3159
|
-
{
|
|
3160
|
-
"name": "renderTo",
|
|
3161
|
-
"params": "(juxComponent)",
|
|
3162
|
-
"returns": "this",
|
|
3163
|
-
"description": "Set renderTo"
|
|
3164
1741
|
}
|
|
3165
1742
|
],
|
|
3166
|
-
"example": "
|
|
1743
|
+
"example": "jux.sidebar('id').render()"
|
|
3167
1744
|
},
|
|
3168
1745
|
{
|
|
3169
1746
|
"name": "Switch",
|
|
3170
1747
|
"category": "UI Components",
|
|
3171
|
-
"description": "Switch component
|
|
1748
|
+
"description": "Switch component",
|
|
3172
1749
|
"constructor": "jux.switch(id: string, options: SwitchOptions = {})",
|
|
3173
1750
|
"fluentMethods": [
|
|
3174
|
-
{
|
|
3175
|
-
"name": "label",
|
|
3176
|
-
"params": "(value)",
|
|
3177
|
-
"returns": "this",
|
|
3178
|
-
"description": "Set label"
|
|
3179
|
-
},
|
|
3180
1751
|
{
|
|
3181
1752
|
"name": "checked",
|
|
3182
1753
|
"params": "(value)",
|
|
@@ -3184,60 +1755,36 @@
|
|
|
3184
1755
|
"description": "Set checked"
|
|
3185
1756
|
},
|
|
3186
1757
|
{
|
|
3187
|
-
"name": "
|
|
3188
|
-
"params": "(value)",
|
|
3189
|
-
"returns": "this",
|
|
3190
|
-
"description": "Set disabled"
|
|
3191
|
-
},
|
|
3192
|
-
{
|
|
3193
|
-
"name": "name",
|
|
1758
|
+
"name": "value",
|
|
3194
1759
|
"params": "(value)",
|
|
3195
1760
|
"returns": "this",
|
|
3196
|
-
"description": "Set
|
|
1761
|
+
"description": "Set value"
|
|
3197
1762
|
},
|
|
3198
1763
|
{
|
|
3199
|
-
"name": "
|
|
3200
|
-
"params": "(
|
|
1764
|
+
"name": "toggle",
|
|
1765
|
+
"params": "()",
|
|
3201
1766
|
"returns": "this",
|
|
3202
|
-
"description": "Set
|
|
1767
|
+
"description": "Set toggle"
|
|
3203
1768
|
},
|
|
3204
1769
|
{
|
|
3205
|
-
"name": "
|
|
1770
|
+
"name": "setValue",
|
|
3206
1771
|
"params": "(value)",
|
|
3207
1772
|
"returns": "this",
|
|
3208
|
-
"description": "Set
|
|
3209
|
-
},
|
|
3210
|
-
{
|
|
3211
|
-
"name": "bind",
|
|
3212
|
-
"params": "(stateObj)",
|
|
3213
|
-
"returns": "this",
|
|
3214
|
-
"description": "Set bind"
|
|
3215
|
-
},
|
|
3216
|
-
{
|
|
3217
|
-
"name": "toggle",
|
|
3218
|
-
"params": "()",
|
|
3219
|
-
"returns": "this",
|
|
3220
|
-
"description": "Set toggle"
|
|
1773
|
+
"description": "Set setValue"
|
|
3221
1774
|
},
|
|
3222
1775
|
{
|
|
3223
1776
|
"name": "render",
|
|
3224
1777
|
"params": "(targetId?)",
|
|
3225
1778
|
"returns": "this",
|
|
3226
1779
|
"description": "Set render"
|
|
3227
|
-
},
|
|
3228
|
-
{
|
|
3229
|
-
"name": "renderTo",
|
|
3230
|
-
"params": "(juxComponent)",
|
|
3231
|
-
"returns": "this",
|
|
3232
|
-
"description": "Set renderTo"
|
|
3233
1780
|
}
|
|
3234
1781
|
],
|
|
3235
|
-
"example": "jux.switch('
|
|
1782
|
+
"example": "jux.switch('id').render()"
|
|
3236
1783
|
},
|
|
3237
1784
|
{
|
|
3238
1785
|
"name": "Tabs",
|
|
3239
1786
|
"category": "UI Components",
|
|
3240
|
-
"description": "
|
|
1787
|
+
"description": "Tabs component",
|
|
3241
1788
|
"constructor": "jux.tabs(id: string, options: TabsOptions = {})",
|
|
3242
1789
|
"fluentMethods": [
|
|
3243
1790
|
{
|
|
@@ -3259,50 +1806,26 @@
|
|
|
3259
1806
|
"description": "Set activeTab"
|
|
3260
1807
|
},
|
|
3261
1808
|
{
|
|
3262
|
-
"name": "
|
|
3263
|
-
"params": "(value)",
|
|
3264
|
-
"returns": "this",
|
|
3265
|
-
"description": "Set style"
|
|
3266
|
-
},
|
|
3267
|
-
{
|
|
3268
|
-
"name": "class",
|
|
1809
|
+
"name": "variant",
|
|
3269
1810
|
"params": "(value)",
|
|
3270
1811
|
"returns": "this",
|
|
3271
|
-
"description": "Set
|
|
1812
|
+
"description": "Set variant"
|
|
3272
1813
|
},
|
|
3273
1814
|
{
|
|
3274
1815
|
"name": "render",
|
|
3275
1816
|
"params": "(targetId?)",
|
|
3276
1817
|
"returns": "this",
|
|
3277
1818
|
"description": "Set render"
|
|
3278
|
-
},
|
|
3279
|
-
{
|
|
3280
|
-
"name": "renderTo",
|
|
3281
|
-
"params": "(juxComponent)",
|
|
3282
|
-
"returns": "this",
|
|
3283
|
-
"description": "Set renderTo"
|
|
3284
1819
|
}
|
|
3285
1820
|
],
|
|
3286
|
-
"example": "
|
|
1821
|
+
"example": "jux.tabs('id').render()"
|
|
3287
1822
|
},
|
|
3288
1823
|
{
|
|
3289
1824
|
"name": "Theme-toggle",
|
|
3290
1825
|
"category": "UI Components",
|
|
3291
|
-
"description": "Theme
|
|
1826
|
+
"description": "Theme-toggle component",
|
|
3292
1827
|
"constructor": "jux.theme-toggle(id: string, options: ThemeToggleOptions = {})",
|
|
3293
1828
|
"fluentMethods": [
|
|
3294
|
-
{
|
|
3295
|
-
"name": "setTheme",
|
|
3296
|
-
"params": "(themeId)",
|
|
3297
|
-
"returns": "this",
|
|
3298
|
-
"description": "Set setTheme"
|
|
3299
|
-
},
|
|
3300
|
-
{
|
|
3301
|
-
"name": "addTheme",
|
|
3302
|
-
"params": "(theme)",
|
|
3303
|
-
"returns": "this",
|
|
3304
|
-
"description": "Set addTheme"
|
|
3305
|
-
},
|
|
3306
1829
|
{
|
|
3307
1830
|
"name": "themes",
|
|
3308
1831
|
"params": "(value)",
|
|
@@ -3322,31 +1845,25 @@
|
|
|
3322
1845
|
"description": "Set showLabel"
|
|
3323
1846
|
},
|
|
3324
1847
|
{
|
|
3325
|
-
"name": "
|
|
3326
|
-
"params": "(
|
|
1848
|
+
"name": "setTheme",
|
|
1849
|
+
"params": "(themeId)",
|
|
3327
1850
|
"returns": "this",
|
|
3328
|
-
"description": "Set
|
|
1851
|
+
"description": "Set setTheme"
|
|
3329
1852
|
},
|
|
3330
1853
|
{
|
|
3331
|
-
"name": "
|
|
3332
|
-
"params": "(
|
|
1854
|
+
"name": "addTheme",
|
|
1855
|
+
"params": "(theme)",
|
|
3333
1856
|
"returns": "this",
|
|
3334
|
-
"description": "Set
|
|
1857
|
+
"description": "Set addTheme"
|
|
3335
1858
|
},
|
|
3336
1859
|
{
|
|
3337
1860
|
"name": "render",
|
|
3338
1861
|
"params": "(targetId?)",
|
|
3339
1862
|
"returns": "this",
|
|
3340
1863
|
"description": "Set render"
|
|
3341
|
-
},
|
|
3342
|
-
{
|
|
3343
|
-
"name": "renderTo",
|
|
3344
|
-
"params": "(juxComponent)",
|
|
3345
|
-
"returns": "this",
|
|
3346
|
-
"description": "Set renderTo"
|
|
3347
1864
|
}
|
|
3348
1865
|
],
|
|
3349
|
-
"example": "
|
|
1866
|
+
"example": "jux.theme-toggle('id').render()"
|
|
3350
1867
|
},
|
|
3351
1868
|
{
|
|
3352
1869
|
"name": "Token-calculator",
|
|
@@ -3408,7 +1925,7 @@
|
|
|
3408
1925
|
{
|
|
3409
1926
|
"name": "Tooltip",
|
|
3410
1927
|
"category": "UI Components",
|
|
3411
|
-
"description": "Tooltip component
|
|
1928
|
+
"description": "Tooltip component",
|
|
3412
1929
|
"constructor": "jux.tooltip(id: string, options: TooltipOptions = {})",
|
|
3413
1930
|
"fluentMethods": [
|
|
3414
1931
|
{
|
|
@@ -3423,24 +1940,6 @@
|
|
|
3423
1940
|
"returns": "this",
|
|
3424
1941
|
"description": "Set position"
|
|
3425
1942
|
},
|
|
3426
|
-
{
|
|
3427
|
-
"name": "trigger",
|
|
3428
|
-
"params": "(value)",
|
|
3429
|
-
"returns": "this",
|
|
3430
|
-
"description": "Set trigger"
|
|
3431
|
-
},
|
|
3432
|
-
{
|
|
3433
|
-
"name": "style",
|
|
3434
|
-
"params": "(value)",
|
|
3435
|
-
"returns": "this",
|
|
3436
|
-
"description": "Set style"
|
|
3437
|
-
},
|
|
3438
|
-
{
|
|
3439
|
-
"name": "class",
|
|
3440
|
-
"params": "(value)",
|
|
3441
|
-
"returns": "this",
|
|
3442
|
-
"description": "Set class"
|
|
3443
|
-
},
|
|
3444
1943
|
{
|
|
3445
1944
|
"name": "attachTo",
|
|
3446
1945
|
"params": "(target)",
|
|
@@ -3452,15 +1951,9 @@
|
|
|
3452
1951
|
"params": "(targetId?)",
|
|
3453
1952
|
"returns": "this",
|
|
3454
1953
|
"description": "Set render"
|
|
3455
|
-
},
|
|
3456
|
-
{
|
|
3457
|
-
"name": "renderTo",
|
|
3458
|
-
"params": "(juxComponent)",
|
|
3459
|
-
"returns": "this",
|
|
3460
|
-
"description": "Set renderTo"
|
|
3461
1954
|
}
|
|
3462
1955
|
],
|
|
3463
|
-
"example": "
|
|
1956
|
+
"example": "jux.tooltip('id').render()"
|
|
3464
1957
|
},
|
|
3465
1958
|
{
|
|
3466
1959
|
"name": "View",
|
|
@@ -3501,6 +1994,30 @@
|
|
|
3501
1994
|
"returns": "this",
|
|
3502
1995
|
"description": "Set html"
|
|
3503
1996
|
},
|
|
1997
|
+
{
|
|
1998
|
+
"name": "tagType",
|
|
1999
|
+
"params": "(value)",
|
|
2000
|
+
"returns": "this",
|
|
2001
|
+
"description": "Set tagType"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"name": "className",
|
|
2005
|
+
"params": "(value)",
|
|
2006
|
+
"returns": "this",
|
|
2007
|
+
"description": "Set className"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"name": "style",
|
|
2011
|
+
"params": "(value)",
|
|
2012
|
+
"returns": "this",
|
|
2013
|
+
"description": "Set style"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"name": "attrs",
|
|
2017
|
+
"params": "(attributes, string>)",
|
|
2018
|
+
"returns": "this",
|
|
2019
|
+
"description": "Set attrs"
|
|
2020
|
+
},
|
|
3504
2021
|
{
|
|
3505
2022
|
"name": "render",
|
|
3506
2023
|
"params": "(targetSelector?)",
|
|
@@ -3542,5 +2059,5 @@
|
|
|
3542
2059
|
}
|
|
3543
2060
|
],
|
|
3544
2061
|
"version": "1.0.0",
|
|
3545
|
-
"lastUpdated": "2026-01-
|
|
2062
|
+
"lastUpdated": "2026-01-28T04:47:53.565Z"
|
|
3546
2063
|
}
|