stimulus_plumbers 0.4.8 → 0.4.10
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +39 -0
- data/README.md +7 -9
- data/app/assets/javascripts/stimulus-plumbers/controllers.manifest.json +367 -23
- data/app/assets/javascripts/stimulus-plumbers/index.es.js +678 -233
- data/app/assets/javascripts/stimulus-plumbers/index.es.js.map +1 -1
- data/app/assets/javascripts/stimulus-plumbers/index.umd.js +1 -1
- data/app/assets/javascripts/stimulus-plumbers/index.umd.js.map +1 -1
- data/app/assets/stylesheets/stimulus_plumbers/tokens.css +58 -53
- data/docs/architecture.md +0 -2
- data/docs/component/avatar.md +1 -0
- data/docs/component/button.md +1 -0
- data/docs/component/calendar.md +7 -16
- data/docs/component/checklist.md +153 -0
- data/docs/component/form.md +27 -5
- data/docs/component/icon.md +7 -5
- data/docs/component/indicator.md +55 -0
- data/docs/component/list.md +2 -3
- data/docs/component/ordered_list.md +118 -0
- data/docs/component/plumber.md +21 -0
- data/docs/component/popover.md +1 -2
- data/docs/component/progress.md +65 -0
- data/docs/component/timeline.md +47 -12
- data/docs/guide.md +21 -0
- data/lib/generators/stimulus_plumbers/install/install_generator.rb +21 -11
- data/lib/stimulus_plumbers/components/button.rb +1 -0
- data/lib/stimulus_plumbers/components/checklist/item/slots.rb +13 -0
- data/lib/stimulus_plumbers/components/checklist/item.rb +64 -0
- data/lib/stimulus_plumbers/components/checklist.rb +50 -0
- data/lib/stimulus_plumbers/components/combobox/typeahead.rb +1 -0
- data/lib/stimulus_plumbers/components/icon.rb +2 -2
- data/lib/stimulus_plumbers/components/indicator.rb +30 -0
- data/lib/stimulus_plumbers/components/link.rb +1 -0
- data/lib/stimulus_plumbers/components/ordered_list/item/slots.rb +13 -0
- data/lib/stimulus_plumbers/components/ordered_list/item.rb +129 -0
- data/lib/stimulus_plumbers/components/ordered_list.rb +24 -0
- data/lib/stimulus_plumbers/components/progress_bar.rb +48 -0
- data/lib/stimulus_plumbers/components/progress_meter.rb +37 -0
- data/lib/stimulus_plumbers/components/progress_ring.rb +40 -0
- data/lib/stimulus_plumbers/components/timeline/event.rb +2 -1
- data/lib/stimulus_plumbers/components/timeline/group.rb +5 -3
- data/lib/stimulus_plumbers/engine.rb +0 -4
- data/lib/stimulus_plumbers/form/builder.rb +4 -0
- data/lib/stimulus_plumbers/form/field.rb +1 -1
- data/lib/stimulus_plumbers/form/fields/inputs/code.rb +86 -0
- data/lib/stimulus_plumbers/form/fields/inputs/credit_card.rb +98 -0
- data/lib/stimulus_plumbers/form/fields/inputs/password.rb +1 -0
- data/lib/stimulus_plumbers/form/fields/inputs/search.rb +1 -0
- data/lib/stimulus_plumbers/form/fields/renderer.rb +2 -0
- data/lib/stimulus_plumbers/generators/css_entrypoint.rb +37 -9
- data/lib/stimulus_plumbers/generators/tokens_directive.rb +9 -5
- data/lib/stimulus_plumbers/helpers/avatar_helper.rb +1 -7
- data/lib/stimulus_plumbers/helpers/button_helper.rb +1 -7
- data/lib/stimulus_plumbers/helpers/calendar_helper.rb +2 -9
- data/lib/stimulus_plumbers/helpers/calendar_turbo_helper.rb +3 -6
- data/lib/stimulus_plumbers/helpers/checklist_helper.rb +11 -0
- data/lib/stimulus_plumbers/helpers/indicator_helper.rb +11 -0
- data/lib/stimulus_plumbers/helpers/ordered_list_helper.rb +11 -0
- data/lib/stimulus_plumbers/helpers/popover_helper.rb +1 -7
- data/lib/stimulus_plumbers/helpers/progress_helper.rb +21 -0
- data/lib/stimulus_plumbers/helpers.rb +8 -0
- data/lib/stimulus_plumbers/themes/base.rb +4 -0
- data/lib/stimulus_plumbers/themes/schema/icon.rb +21 -4
- data/lib/stimulus_plumbers/themes/schema/indicator/ranges.rb +14 -0
- data/lib/stimulus_plumbers/themes/schema.rb +82 -25
- data/lib/stimulus_plumbers/version.rb +1 -1
- data/lib/stimulus_plumbers.rb +10 -0
- data/vendor/ARIA.md +29 -2
- data/vendor/component/manifest.json +215 -0
- data/vendor/controller/docs/calendar.md +4 -7
- data/vendor/controller/docs/checklist.md +45 -0
- data/vendor/controller/docs/combobox.md +1 -31
- data/vendor/controller/docs/input-clearable.md +1 -4
- data/vendor/controller/docs/input-formatter.md +88 -23
- data/vendor/controller/docs/modal.md +1 -4
- data/vendor/controller/docs/popover.md +1 -3
- data/vendor/controller/docs/progress.md +82 -0
- data/vendor/controller/docs/reorderable.md +82 -0
- data/vendor/controller/docs/visibility.md +31 -0
- data/vendor/controller/manifest.json +367 -23
- metadata +27 -1
|
@@ -26,14 +26,39 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"outlets": [],
|
|
29
|
-
"classes": []
|
|
29
|
+
"classes": [],
|
|
30
|
+
"actions": [
|
|
31
|
+
"attach",
|
|
32
|
+
"constructor",
|
|
33
|
+
"detach",
|
|
34
|
+
"drawGrid",
|
|
35
|
+
"handle",
|
|
36
|
+
"if",
|
|
37
|
+
"navigate",
|
|
38
|
+
"navigated",
|
|
39
|
+
"step"
|
|
40
|
+
],
|
|
41
|
+
"dispatches": [
|
|
42
|
+
"selected",
|
|
43
|
+
"selecting"
|
|
44
|
+
]
|
|
30
45
|
},
|
|
31
46
|
"calendar-decade-selector": {
|
|
32
47
|
"identifier": "calendar-decade-selector",
|
|
33
48
|
"targets": [],
|
|
34
49
|
"values": {},
|
|
35
50
|
"outlets": [],
|
|
36
|
-
"classes": []
|
|
51
|
+
"classes": [],
|
|
52
|
+
"actions": [
|
|
53
|
+
"attach",
|
|
54
|
+
"constructor",
|
|
55
|
+
"detach",
|
|
56
|
+
"handle"
|
|
57
|
+
],
|
|
58
|
+
"dispatches": [
|
|
59
|
+
"selected",
|
|
60
|
+
"selecting"
|
|
61
|
+
]
|
|
37
62
|
},
|
|
38
63
|
"calendar-month": {
|
|
39
64
|
"identifier": "calendar-month",
|
|
@@ -87,6 +112,25 @@
|
|
|
87
112
|
"dayOfMonth",
|
|
88
113
|
"dayOfOtherMonth",
|
|
89
114
|
"row"
|
|
115
|
+
],
|
|
116
|
+
"actions": [
|
|
117
|
+
"_scheduleNavigate",
|
|
118
|
+
"attach",
|
|
119
|
+
"constructor",
|
|
120
|
+
"createDayElement",
|
|
121
|
+
"detach",
|
|
122
|
+
"drawDaysOfMonth",
|
|
123
|
+
"drawDaysOfWeek",
|
|
124
|
+
"handle",
|
|
125
|
+
"if",
|
|
126
|
+
"navigate",
|
|
127
|
+
"navigated",
|
|
128
|
+
"select",
|
|
129
|
+
"step"
|
|
130
|
+
],
|
|
131
|
+
"dispatches": [
|
|
132
|
+
"selected",
|
|
133
|
+
"selecting"
|
|
90
134
|
]
|
|
91
135
|
},
|
|
92
136
|
"calendar-month-selector": {
|
|
@@ -94,7 +138,17 @@
|
|
|
94
138
|
"targets": [],
|
|
95
139
|
"values": {},
|
|
96
140
|
"outlets": [],
|
|
97
|
-
"classes": []
|
|
141
|
+
"classes": [],
|
|
142
|
+
"actions": [
|
|
143
|
+
"attach",
|
|
144
|
+
"constructor",
|
|
145
|
+
"detach",
|
|
146
|
+
"handle"
|
|
147
|
+
],
|
|
148
|
+
"dispatches": [
|
|
149
|
+
"selected",
|
|
150
|
+
"selecting"
|
|
151
|
+
]
|
|
98
152
|
},
|
|
99
153
|
"calendar-year": {
|
|
100
154
|
"identifier": "calendar-year",
|
|
@@ -131,14 +185,56 @@
|
|
|
131
185
|
}
|
|
132
186
|
},
|
|
133
187
|
"outlets": [],
|
|
134
|
-
"classes": []
|
|
188
|
+
"classes": [],
|
|
189
|
+
"actions": [
|
|
190
|
+
"attach",
|
|
191
|
+
"constructor",
|
|
192
|
+
"detach",
|
|
193
|
+
"drawGrid",
|
|
194
|
+
"handle",
|
|
195
|
+
"if",
|
|
196
|
+
"navigate",
|
|
197
|
+
"navigated",
|
|
198
|
+
"step"
|
|
199
|
+
],
|
|
200
|
+
"dispatches": [
|
|
201
|
+
"selected",
|
|
202
|
+
"selecting"
|
|
203
|
+
]
|
|
135
204
|
},
|
|
136
205
|
"calendar-year-selector": {
|
|
137
206
|
"identifier": "calendar-year-selector",
|
|
138
207
|
"targets": [],
|
|
139
208
|
"values": {},
|
|
140
209
|
"outlets": [],
|
|
141
|
-
"classes": []
|
|
210
|
+
"classes": [],
|
|
211
|
+
"actions": [
|
|
212
|
+
"attach",
|
|
213
|
+
"constructor",
|
|
214
|
+
"detach",
|
|
215
|
+
"handle"
|
|
216
|
+
],
|
|
217
|
+
"dispatches": [
|
|
218
|
+
"selected",
|
|
219
|
+
"selecting"
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
"checklist": {
|
|
223
|
+
"identifier": "checklist",
|
|
224
|
+
"targets": [
|
|
225
|
+
"master",
|
|
226
|
+
"item"
|
|
227
|
+
],
|
|
228
|
+
"values": {},
|
|
229
|
+
"outlets": [],
|
|
230
|
+
"classes": [],
|
|
231
|
+
"actions": [
|
|
232
|
+
"enabledItems",
|
|
233
|
+
"onChange",
|
|
234
|
+
"recompute",
|
|
235
|
+
"toggleAll"
|
|
236
|
+
],
|
|
237
|
+
"dispatches": []
|
|
142
238
|
},
|
|
143
239
|
"clipboard": {
|
|
144
240
|
"identifier": "clipboard",
|
|
@@ -152,7 +248,16 @@
|
|
|
152
248
|
}
|
|
153
249
|
},
|
|
154
250
|
"outlets": [],
|
|
155
|
-
"classes": []
|
|
251
|
+
"classes": [],
|
|
252
|
+
"actions": [
|
|
253
|
+
"copy",
|
|
254
|
+
"onPaste"
|
|
255
|
+
],
|
|
256
|
+
"dispatches": [
|
|
257
|
+
"copied",
|
|
258
|
+
"copy-failed",
|
|
259
|
+
"pasted"
|
|
260
|
+
]
|
|
156
261
|
},
|
|
157
262
|
"combobox-date": {
|
|
158
263
|
"identifier": "combobox-date",
|
|
@@ -194,7 +299,29 @@
|
|
|
194
299
|
"calendar-year",
|
|
195
300
|
"calendar-decade"
|
|
196
301
|
],
|
|
197
|
-
"classes": []
|
|
302
|
+
"classes": [],
|
|
303
|
+
"actions": [
|
|
304
|
+
"calendarMonthOutletConnected",
|
|
305
|
+
"draw",
|
|
306
|
+
"drawDay",
|
|
307
|
+
"drawMonth",
|
|
308
|
+
"drawView",
|
|
309
|
+
"drawViewTitle",
|
|
310
|
+
"drawYear",
|
|
311
|
+
"if",
|
|
312
|
+
"next",
|
|
313
|
+
"onDaySelect",
|
|
314
|
+
"onMonthSelect",
|
|
315
|
+
"onYearSelect",
|
|
316
|
+
"previous",
|
|
317
|
+
"stepArgs",
|
|
318
|
+
"syncOutletValues",
|
|
319
|
+
"viewTitleLabel",
|
|
320
|
+
"zoomOut"
|
|
321
|
+
],
|
|
322
|
+
"dispatches": [
|
|
323
|
+
"selected"
|
|
324
|
+
]
|
|
198
325
|
},
|
|
199
326
|
"combobox-dropdown": {
|
|
200
327
|
"identifier": "combobox-dropdown",
|
|
@@ -218,7 +345,19 @@
|
|
|
218
345
|
}
|
|
219
346
|
},
|
|
220
347
|
"outlets": [],
|
|
221
|
-
"classes": []
|
|
348
|
+
"classes": [],
|
|
349
|
+
"actions": [
|
|
350
|
+
"filter",
|
|
351
|
+
"onNavigate",
|
|
352
|
+
"onSelect",
|
|
353
|
+
"select",
|
|
354
|
+
"setEmpty",
|
|
355
|
+
"setLoading",
|
|
356
|
+
"showAll"
|
|
357
|
+
],
|
|
358
|
+
"dispatches": [
|
|
359
|
+
"selected"
|
|
360
|
+
]
|
|
222
361
|
},
|
|
223
362
|
"combobox-time": {
|
|
224
363
|
"identifier": "combobox-time",
|
|
@@ -229,7 +368,18 @@
|
|
|
229
368
|
],
|
|
230
369
|
"values": {},
|
|
231
370
|
"outlets": [],
|
|
232
|
-
"classes": []
|
|
371
|
+
"classes": [],
|
|
372
|
+
"actions": [
|
|
373
|
+
"onNavigate",
|
|
374
|
+
"onSelect",
|
|
375
|
+
"select",
|
|
376
|
+
"selectedValue",
|
|
377
|
+
"step",
|
|
378
|
+
"toH24"
|
|
379
|
+
],
|
|
380
|
+
"dispatches": [
|
|
381
|
+
"selected"
|
|
382
|
+
]
|
|
233
383
|
},
|
|
234
384
|
"dismisser": {
|
|
235
385
|
"identifier": "dismisser",
|
|
@@ -238,7 +388,9 @@
|
|
|
238
388
|
],
|
|
239
389
|
"values": {},
|
|
240
390
|
"outlets": [],
|
|
241
|
-
"classes": []
|
|
391
|
+
"classes": [],
|
|
392
|
+
"actions": [],
|
|
393
|
+
"dispatches": []
|
|
242
394
|
},
|
|
243
395
|
"flipper": {
|
|
244
396
|
"identifier": "flipper",
|
|
@@ -261,7 +413,9 @@
|
|
|
261
413
|
}
|
|
262
414
|
},
|
|
263
415
|
"outlets": [],
|
|
264
|
-
"classes": []
|
|
416
|
+
"classes": [],
|
|
417
|
+
"actions": [],
|
|
418
|
+
"dispatches": []
|
|
265
419
|
},
|
|
266
420
|
"input-clearable": {
|
|
267
421
|
"identifier": "input-clearable",
|
|
@@ -271,7 +425,13 @@
|
|
|
271
425
|
],
|
|
272
426
|
"values": {},
|
|
273
427
|
"outlets": [],
|
|
274
|
-
"classes": []
|
|
428
|
+
"classes": [],
|
|
429
|
+
"actions": [
|
|
430
|
+
"clear",
|
|
431
|
+
"draw",
|
|
432
|
+
"handleEscape"
|
|
433
|
+
],
|
|
434
|
+
"dispatches": []
|
|
275
435
|
},
|
|
276
436
|
"input-combobox": {
|
|
277
437
|
"identifier": "input-combobox",
|
|
@@ -291,17 +451,64 @@
|
|
|
291
451
|
"outlets": [
|
|
292
452
|
"combobox-dropdown"
|
|
293
453
|
],
|
|
294
|
-
"classes": []
|
|
454
|
+
"classes": [],
|
|
455
|
+
"actions": [
|
|
456
|
+
"onInput",
|
|
457
|
+
"onSelect"
|
|
458
|
+
],
|
|
459
|
+
"dispatches": [
|
|
460
|
+
"changed"
|
|
461
|
+
]
|
|
295
462
|
},
|
|
296
463
|
"input-formatter": {
|
|
297
464
|
"identifier": "input-formatter",
|
|
298
465
|
"targets": [
|
|
299
466
|
"input",
|
|
300
|
-
"toggle"
|
|
467
|
+
"toggle",
|
|
468
|
+
"cell"
|
|
301
469
|
],
|
|
302
|
-
"values": {
|
|
470
|
+
"values": {
|
|
471
|
+
"format": {
|
|
472
|
+
"type": "String",
|
|
473
|
+
"default": "plain"
|
|
474
|
+
},
|
|
475
|
+
"options": {
|
|
476
|
+
"type": "Object",
|
|
477
|
+
"default": {}
|
|
478
|
+
},
|
|
479
|
+
"revealed": {
|
|
480
|
+
"type": "Boolean",
|
|
481
|
+
"default": false
|
|
482
|
+
},
|
|
483
|
+
"groups": {
|
|
484
|
+
"type": "Array",
|
|
485
|
+
"default": []
|
|
486
|
+
}
|
|
487
|
+
},
|
|
303
488
|
"outlets": [],
|
|
304
|
-
"classes": []
|
|
489
|
+
"classes": [],
|
|
490
|
+
"actions": [
|
|
491
|
+
"attachCells",
|
|
492
|
+
"cellsValue",
|
|
493
|
+
"detachCells",
|
|
494
|
+
"drawCells",
|
|
495
|
+
"drawToggle",
|
|
496
|
+
"format",
|
|
497
|
+
"isFull",
|
|
498
|
+
"onBlur",
|
|
499
|
+
"onChange",
|
|
500
|
+
"onFocus",
|
|
501
|
+
"onFormatting",
|
|
502
|
+
"onInput",
|
|
503
|
+
"onPaste",
|
|
504
|
+
"primeFilledState",
|
|
505
|
+
"readValue",
|
|
506
|
+
"toggle"
|
|
507
|
+
],
|
|
508
|
+
"dispatches": [
|
|
509
|
+
"filled",
|
|
510
|
+
"formatted"
|
|
511
|
+
]
|
|
305
512
|
},
|
|
306
513
|
"modal": {
|
|
307
514
|
"identifier": "modal",
|
|
@@ -311,7 +518,12 @@
|
|
|
311
518
|
],
|
|
312
519
|
"values": {},
|
|
313
520
|
"outlets": [],
|
|
314
|
-
"classes": []
|
|
521
|
+
"classes": [],
|
|
522
|
+
"actions": [
|
|
523
|
+
"close",
|
|
524
|
+
"open"
|
|
525
|
+
],
|
|
526
|
+
"dispatches": []
|
|
315
527
|
},
|
|
316
528
|
"panner": {
|
|
317
529
|
"identifier": "panner",
|
|
@@ -320,7 +532,9 @@
|
|
|
320
532
|
],
|
|
321
533
|
"values": {},
|
|
322
534
|
"outlets": [],
|
|
323
|
-
"classes": []
|
|
535
|
+
"classes": [],
|
|
536
|
+
"actions": [],
|
|
537
|
+
"dispatches": []
|
|
324
538
|
},
|
|
325
539
|
"popover": {
|
|
326
540
|
"identifier": "popover",
|
|
@@ -359,10 +573,114 @@
|
|
|
359
573
|
}
|
|
360
574
|
},
|
|
361
575
|
"outlets": [],
|
|
362
|
-
"classes": [
|
|
363
|
-
|
|
576
|
+
"classes": [],
|
|
577
|
+
"actions": [
|
|
578
|
+
"canLoad",
|
|
579
|
+
"close",
|
|
580
|
+
"closeOnSelect",
|
|
581
|
+
"contentLoaded",
|
|
582
|
+
"contentLoader",
|
|
583
|
+
"contentLoading",
|
|
584
|
+
"dismissed",
|
|
585
|
+
"getContentNode",
|
|
586
|
+
"hidden",
|
|
587
|
+
"open",
|
|
588
|
+
"shown",
|
|
589
|
+
"toggle"
|
|
590
|
+
],
|
|
591
|
+
"dispatches": []
|
|
592
|
+
},
|
|
593
|
+
"progress": {
|
|
594
|
+
"identifier": "progress",
|
|
595
|
+
"targets": [
|
|
596
|
+
"fill",
|
|
597
|
+
"meter"
|
|
598
|
+
],
|
|
599
|
+
"values": {
|
|
600
|
+
"variant": {
|
|
601
|
+
"type": "String",
|
|
602
|
+
"default": "bar"
|
|
603
|
+
},
|
|
604
|
+
"current": {
|
|
605
|
+
"type": "Number",
|
|
606
|
+
"default": 0
|
|
607
|
+
},
|
|
608
|
+
"min": {
|
|
609
|
+
"type": "Number",
|
|
610
|
+
"default": 0
|
|
611
|
+
},
|
|
612
|
+
"max": {
|
|
613
|
+
"type": "Number",
|
|
614
|
+
"default": 100
|
|
615
|
+
},
|
|
616
|
+
"indeterminate": {
|
|
617
|
+
"type": "Boolean",
|
|
618
|
+
"default": false
|
|
619
|
+
},
|
|
620
|
+
"indeterminateFraction": {
|
|
621
|
+
"type": "Number",
|
|
622
|
+
"default": 0.25
|
|
623
|
+
},
|
|
624
|
+
"optimum": {
|
|
625
|
+
"type": "Number"
|
|
626
|
+
},
|
|
627
|
+
"low": {
|
|
628
|
+
"type": "Number"
|
|
629
|
+
},
|
|
630
|
+
"high": {
|
|
631
|
+
"type": "Number"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"outlets": [],
|
|
635
|
+
"classes": [],
|
|
636
|
+
"actions": [
|
|
637
|
+
"clamp",
|
|
638
|
+
"percent",
|
|
639
|
+
"render",
|
|
640
|
+
"renderBar",
|
|
641
|
+
"renderMeter",
|
|
642
|
+
"renderRing",
|
|
643
|
+
"setCircumference",
|
|
644
|
+
"setValue"
|
|
645
|
+
],
|
|
646
|
+
"dispatches": [
|
|
647
|
+
"changed"
|
|
364
648
|
]
|
|
365
649
|
},
|
|
650
|
+
"reorderable": {
|
|
651
|
+
"identifier": "reorderable",
|
|
652
|
+
"targets": [
|
|
653
|
+
"item",
|
|
654
|
+
"handle",
|
|
655
|
+
"trigger"
|
|
656
|
+
],
|
|
657
|
+
"values": {
|
|
658
|
+
"moveKey": {
|
|
659
|
+
"type": "String",
|
|
660
|
+
"default": "Alt"
|
|
661
|
+
},
|
|
662
|
+
"editing": {
|
|
663
|
+
"type": "Boolean",
|
|
664
|
+
"default": false
|
|
665
|
+
},
|
|
666
|
+
"orientation": {
|
|
667
|
+
"type": "String",
|
|
668
|
+
"default": "vertical"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"outlets": [],
|
|
672
|
+
"classes": [],
|
|
673
|
+
"actions": [
|
|
674
|
+
"enterEditing",
|
|
675
|
+
"exitEditing",
|
|
676
|
+
"moved",
|
|
677
|
+
"onPointerDown",
|
|
678
|
+
"onPointerMove",
|
|
679
|
+
"onPointerUp",
|
|
680
|
+
"toggleEditing"
|
|
681
|
+
],
|
|
682
|
+
"dispatches": []
|
|
683
|
+
},
|
|
366
684
|
"timeline": {
|
|
367
685
|
"identifier": "timeline",
|
|
368
686
|
"targets": [
|
|
@@ -370,9 +688,30 @@
|
|
|
370
688
|
"detail",
|
|
371
689
|
"time"
|
|
372
690
|
],
|
|
373
|
-
"values": {
|
|
691
|
+
"values": {
|
|
692
|
+
"dateFormat": {
|
|
693
|
+
"type": "Object",
|
|
694
|
+
"default": {}
|
|
695
|
+
}
|
|
696
|
+
},
|
|
374
697
|
"outlets": [],
|
|
375
|
-
"classes": []
|
|
698
|
+
"classes": [],
|
|
699
|
+
"actions": [
|
|
700
|
+
"collapse",
|
|
701
|
+
"collapseItem",
|
|
702
|
+
"expand",
|
|
703
|
+
"expandItem",
|
|
704
|
+
"format",
|
|
705
|
+
"normalize",
|
|
706
|
+
"toggle",
|
|
707
|
+
"validate"
|
|
708
|
+
],
|
|
709
|
+
"dispatches": [
|
|
710
|
+
"collapse",
|
|
711
|
+
"collapsed",
|
|
712
|
+
"expand",
|
|
713
|
+
"expanded"
|
|
714
|
+
]
|
|
376
715
|
},
|
|
377
716
|
"visibility": {
|
|
378
717
|
"identifier": "visibility",
|
|
@@ -381,6 +720,11 @@
|
|
|
381
720
|
],
|
|
382
721
|
"values": {},
|
|
383
722
|
"outlets": [],
|
|
384
|
-
"classes": []
|
|
723
|
+
"classes": [],
|
|
724
|
+
"actions": [
|
|
725
|
+
"dismissed",
|
|
726
|
+
"toggle"
|
|
727
|
+
],
|
|
728
|
+
"dispatches": []
|
|
385
729
|
}
|
|
386
730
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stimulus_plumbers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Chang
|
|
@@ -52,16 +52,20 @@ files:
|
|
|
52
52
|
- docs/component/button.md
|
|
53
53
|
- docs/component/calendar.md
|
|
54
54
|
- docs/component/card.md
|
|
55
|
+
- docs/component/checklist.md
|
|
55
56
|
- docs/component/combobox.md
|
|
56
57
|
- docs/component/dispatcher.md
|
|
57
58
|
- docs/component/divider.md
|
|
58
59
|
- docs/component/form.md
|
|
59
60
|
- docs/component/icon.md
|
|
61
|
+
- docs/component/indicator.md
|
|
60
62
|
- docs/component/link.md
|
|
61
63
|
- docs/component/list.md
|
|
62
64
|
- docs/component/modal.md
|
|
65
|
+
- docs/component/ordered_list.md
|
|
63
66
|
- docs/component/plumber.md
|
|
64
67
|
- docs/component/popover.md
|
|
68
|
+
- docs/component/progress.md
|
|
65
69
|
- docs/component/theme.md
|
|
66
70
|
- docs/component/timeline.md
|
|
67
71
|
- docs/guide.md
|
|
@@ -79,6 +83,9 @@ files:
|
|
|
79
83
|
- lib/stimulus_plumbers/components/calendar/turbo/years_of_decade.rb
|
|
80
84
|
- lib/stimulus_plumbers/components/card.rb
|
|
81
85
|
- lib/stimulus_plumbers/components/card/slots.rb
|
|
86
|
+
- lib/stimulus_plumbers/components/checklist.rb
|
|
87
|
+
- lib/stimulus_plumbers/components/checklist/item.rb
|
|
88
|
+
- lib/stimulus_plumbers/components/checklist/item/slots.rb
|
|
82
89
|
- lib/stimulus_plumbers/components/combobox.rb
|
|
83
90
|
- lib/stimulus_plumbers/components/combobox/builder.rb
|
|
84
91
|
- lib/stimulus_plumbers/components/combobox/date.rb
|
|
@@ -93,6 +100,7 @@ files:
|
|
|
93
100
|
- lib/stimulus_plumbers/components/combobox/typeahead.rb
|
|
94
101
|
- lib/stimulus_plumbers/components/divider.rb
|
|
95
102
|
- lib/stimulus_plumbers/components/icon.rb
|
|
103
|
+
- lib/stimulus_plumbers/components/indicator.rb
|
|
96
104
|
- lib/stimulus_plumbers/components/input_group.rb
|
|
97
105
|
- lib/stimulus_plumbers/components/link.rb
|
|
98
106
|
- lib/stimulus_plumbers/components/link/slots.rb
|
|
@@ -100,9 +108,15 @@ files:
|
|
|
100
108
|
- lib/stimulus_plumbers/components/list/item.rb
|
|
101
109
|
- lib/stimulus_plumbers/components/list/item/slots.rb
|
|
102
110
|
- lib/stimulus_plumbers/components/list/section.rb
|
|
111
|
+
- lib/stimulus_plumbers/components/ordered_list.rb
|
|
112
|
+
- lib/stimulus_plumbers/components/ordered_list/item.rb
|
|
113
|
+
- lib/stimulus_plumbers/components/ordered_list/item/slots.rb
|
|
103
114
|
- lib/stimulus_plumbers/components/popover.rb
|
|
104
115
|
- lib/stimulus_plumbers/components/popover/panel.rb
|
|
105
116
|
- lib/stimulus_plumbers/components/popover/trigger.rb
|
|
117
|
+
- lib/stimulus_plumbers/components/progress_bar.rb
|
|
118
|
+
- lib/stimulus_plumbers/components/progress_meter.rb
|
|
119
|
+
- lib/stimulus_plumbers/components/progress_ring.rb
|
|
106
120
|
- lib/stimulus_plumbers/components/timeline.rb
|
|
107
121
|
- lib/stimulus_plumbers/components/timeline/event.rb
|
|
108
122
|
- lib/stimulus_plumbers/components/timeline/event/slots.rb
|
|
@@ -117,7 +131,9 @@ files:
|
|
|
117
131
|
- lib/stimulus_plumbers/form/fields/group.rb
|
|
118
132
|
- lib/stimulus_plumbers/form/fields/hint.rb
|
|
119
133
|
- lib/stimulus_plumbers/form/fields/inputs/checkbox.rb
|
|
134
|
+
- lib/stimulus_plumbers/form/fields/inputs/code.rb
|
|
120
135
|
- lib/stimulus_plumbers/form/fields/inputs/combobox.rb
|
|
136
|
+
- lib/stimulus_plumbers/form/fields/inputs/credit_card.rb
|
|
121
137
|
- lib/stimulus_plumbers/form/fields/inputs/datetime.rb
|
|
122
138
|
- lib/stimulus_plumbers/form/fields/inputs/file.rb
|
|
123
139
|
- lib/stimulus_plumbers/form/fields/inputs/password.rb
|
|
@@ -141,13 +157,17 @@ files:
|
|
|
141
157
|
- lib/stimulus_plumbers/helpers/calendar_helper.rb
|
|
142
158
|
- lib/stimulus_plumbers/helpers/calendar_turbo_helper.rb
|
|
143
159
|
- lib/stimulus_plumbers/helpers/card_helper.rb
|
|
160
|
+
- lib/stimulus_plumbers/helpers/checklist_helper.rb
|
|
144
161
|
- lib/stimulus_plumbers/helpers/combobox_helper.rb
|
|
145
162
|
- lib/stimulus_plumbers/helpers/divider_helper.rb
|
|
146
163
|
- lib/stimulus_plumbers/helpers/icon_helper.rb
|
|
164
|
+
- lib/stimulus_plumbers/helpers/indicator_helper.rb
|
|
147
165
|
- lib/stimulus_plumbers/helpers/link_helper.rb
|
|
148
166
|
- lib/stimulus_plumbers/helpers/list_helper.rb
|
|
167
|
+
- lib/stimulus_plumbers/helpers/ordered_list_helper.rb
|
|
149
168
|
- lib/stimulus_plumbers/helpers/plumber_helper.rb
|
|
150
169
|
- lib/stimulus_plumbers/helpers/popover_helper.rb
|
|
170
|
+
- lib/stimulus_plumbers/helpers/progress_helper.rb
|
|
151
171
|
- lib/stimulus_plumbers/helpers/timeline_helper.rb
|
|
152
172
|
- lib/stimulus_plumbers/logger.rb
|
|
153
173
|
- lib/stimulus_plumbers/plumber/base.rb
|
|
@@ -176,12 +196,15 @@ files:
|
|
|
176
196
|
- lib/stimulus_plumbers/themes/schema/form/radio/ranges.rb
|
|
177
197
|
- lib/stimulus_plumbers/themes/schema/form/ranges.rb
|
|
178
198
|
- lib/stimulus_plumbers/themes/schema/icon.rb
|
|
199
|
+
- lib/stimulus_plumbers/themes/schema/indicator/ranges.rb
|
|
179
200
|
- lib/stimulus_plumbers/themes/schema/link/ranges.rb
|
|
180
201
|
- lib/stimulus_plumbers/themes/schema/ranges.rb
|
|
181
202
|
- lib/stimulus_plumbers/version.rb
|
|
182
203
|
- lib/tasks/stimulus_plumbers.rake
|
|
183
204
|
- vendor/ARIA.md
|
|
205
|
+
- vendor/component/manifest.json
|
|
184
206
|
- vendor/controller/docs/calendar.md
|
|
207
|
+
- vendor/controller/docs/checklist.md
|
|
185
208
|
- vendor/controller/docs/clipboard.md
|
|
186
209
|
- vendor/controller/docs/combobox.md
|
|
187
210
|
- vendor/controller/docs/dismisser.md
|
|
@@ -191,7 +214,10 @@ files:
|
|
|
191
214
|
- vendor/controller/docs/modal.md
|
|
192
215
|
- vendor/controller/docs/panner.md
|
|
193
216
|
- vendor/controller/docs/popover.md
|
|
217
|
+
- vendor/controller/docs/progress.md
|
|
218
|
+
- vendor/controller/docs/reorderable.md
|
|
194
219
|
- vendor/controller/docs/timeline.md
|
|
220
|
+
- vendor/controller/docs/visibility.md
|
|
195
221
|
- vendor/controller/guide.md
|
|
196
222
|
- vendor/controller/manifest.json
|
|
197
223
|
homepage: https://github.com/ryancyq/stimulus-plumbers
|