stimulus_plumbers 0.4.8 → 0.4.9
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 +16 -0
- data/README.md +7 -9
- data/app/assets/javascripts/stimulus-plumbers/controllers.manifest.json +331 -20
- data/app/assets/javascripts/stimulus-plumbers/index.es.js +493 -226
- 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/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 +12 -0
- data/lib/generators/stimulus_plumbers/install/install_generator.rb +16 -12
- 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/form/fields/inputs/password.rb +1 -0
- data/lib/stimulus_plumbers/form/fields/inputs/search.rb +1 -0
- data/lib/stimulus_plumbers/generators/css_entrypoint.rb +15 -9
- data/lib/stimulus_plumbers/generators/tokens_directive.rb +6 -2
- 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 +39 -3
- data/lib/stimulus_plumbers/version.rb +1 -1
- data/lib/stimulus_plumbers.rb +10 -0
- data/vendor/ARIA.md +22 -2
- data/vendor/component/manifest.json +212 -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 +1 -2
- 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 +331 -20
- metadata +25 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5159190cc72138033f3301b07fc08225b0b3c52dce5550df6e976efa3723da9d
|
|
4
|
+
data.tar.gz: b93e54c4895a37a469854387f9c939188ac8d19a447db37a8adfa02725e00a82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90782512007c48afa0869fe91ffb87c0ae8928b491ddf2ff7b06e9ed19c931d0d12b7caf25d07ac8708e65431cc7d519be177960af2ef3a2393080926c12d810
|
|
7
|
+
data.tar.gz: 7384b1f537e4ab2cd49bec0acf23c52aaec5376af4737f56a79db392ac2d76e16eca3684b923417ddcd42ef806abd98c85c6b08f1521367380be18e62d40f118
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
---
|
|
6
|
+
## [0.4.8](https://github.com/ryancyq/stimulus-plumbers/compare/stimulus-plumbers-rails/v0.4.5..stimulus-plumbers-rails/v0.4.8) - 2026-07-03
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- tailwind install generator ([#154](https://github.com/ryancyq/stimulus-plumbers/issues/154)) - ([db4bda0](https://github.com/ryancyq/stimulus-plumbers/commit/db4bda0b899a463e0608229927c65326233dd3a4)) - Ryan Chang
|
|
11
|
+
- plumber slots should yield proc/block via template capture instead of ruby call ([#156](https://github.com/ryancyq/stimulus-plumbers/issues/156)) - ([5b9039c](https://github.com/ryancyq/stimulus-plumbers/commit/5b9039cf7c88222cfae4865e4b7373c8b5e3c010)) - Ryan Chang
|
|
12
|
+
- tailwind theme registration + activation (rails only) ([#157](https://github.com/ryancyq/stimulus-plumbers/issues/157)) - ([5998854](https://github.com/ryancyq/stimulus-plumbers/commit/5998854ed2a6ca9c67aa225f3c397e4f7bca7a51)) - Ryan Chang
|
|
13
|
+
- reorganize mcp resources + tools ([#161](https://github.com/ryancyq/stimulus-plumbers/issues/161)) - ([2a63580](https://github.com/ryancyq/stimulus-plumbers/commit/2a635800ac439173b5c2eeeb2dc268dc3136f415)) - Ryan Chang
|
|
14
|
+
- mcp doc update + new tools validations ([#162](https://github.com/ryancyq/stimulus-plumbers/issues/162)) - ([beed1bb](https://github.com/ryancyq/stimulus-plumbers/commit/beed1bb14cbfcb8ec6f757145dc6a461d357c060)) - Ryan Chang
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **(mcp)** add Aria plugin exposing aria://reference ([#159](https://github.com/ryancyq/stimulus-plumbers/issues/159)) - ([15d730d](https://github.com/ryancyq/stimulus-plumbers/commit/15d730d51ce8a956d5ba7c3172a5883ad072d219)) - Ryan Chang
|
|
19
|
+
- add StimulusControllerDocs plugin exposing stimulus://docs/{name} ([#160](https://github.com/ryancyq/stimulus-plumbers/issues/160)) - ([beef823](https://github.com/ryancyq/stimulus-plumbers/commit/beef823f2c694623b714823a0dacf8f3c89341e9)) - Ryan Chang
|
|
20
|
+
|
|
5
21
|
---
|
|
6
22
|
## [0.4.5](https://github.com/ryancyq/stimulus-plumbers/compare/stimulus-plumbers-rails/v0.4.4..stimulus-plumbers-rails/v0.4.5) - 2026-07-01
|
|
7
23
|
|
data/README.md
CHANGED
|
@@ -42,19 +42,13 @@ Or use the form builder globally:
|
|
|
42
42
|
config.action_view.default_form_builder = StimulusPlumbers::Form::Builder
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
Run the install generator once to inject the `tokens.css` import into your CSS entry file:
|
|
45
|
+
Run the install generator once to inject the `tokens.css` import into your CSS entry file — see [docs/guide.md#css-entry-file-detection](docs/guide.md#css-entry-file-detection) for how the entry file is found/overridden:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
bin/rails generate stimulus_plumbers:install
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
The
|
|
52
|
-
|
|
53
|
-
- `app/assets/stylesheets/application.tailwind.css`
|
|
54
|
-
- `app/assets/stylesheets/application.css`
|
|
55
|
-
- `app/javascript/entrypoints/application.css`
|
|
56
|
-
|
|
57
|
-
Override the detected file with `STIMULUS_PLUMBERS_CSS_FILE=/path/to/entry.css`. After the initial install, the import stays current automatically — the engine hooks `stimulus_plumbers:install` as a prerequisite of `assets:precompile`.
|
|
51
|
+
The import stays current automatically after that — the engine hooks `stimulus_plumbers:install` as a prerequisite of `assets:precompile`.
|
|
58
52
|
|
|
59
53
|
## Components
|
|
60
54
|
|
|
@@ -65,17 +59,21 @@ Override the detected file with `STIMULUS_PLUMBERS_CSS_FILE=/path/to/entry.css`.
|
|
|
65
59
|
| Calendar | `sp_calendar_month` | [docs/component/calendar.md](docs/component/calendar.md) |
|
|
66
60
|
| Calendar (Turbo) | `sp_calendar_turbo`, `sp_calendar_turbo_month`, `sp_calendar_turbo_year`, `sp_calendar_turbo_decade` | [docs/component/calendar.md](docs/component/calendar.md) |
|
|
67
61
|
| Card | `sp_card` | [docs/component/card.md](docs/component/card.md) |
|
|
62
|
+
| Checklist | `sp_checklist` | [docs/component/checklist.md](docs/component/checklist.md) |
|
|
68
63
|
| Combobox — date | `sp_combobox_date` | [docs/component/combobox.md](docs/component/combobox.md#sp_combobox_date) |
|
|
69
64
|
| Combobox — dropdown | `sp_combobox_dropdown` | [docs/component/combobox.md](docs/component/combobox.md#sp_combobox_dropdown) |
|
|
70
65
|
| Combobox — typeahead | `sp_combobox_typeahead` | [docs/component/combobox.md](docs/component/combobox.md#sp_combobox_typeahead) |
|
|
71
66
|
| Combobox — time | `sp_combobox_time` | [docs/component/combobox.md](docs/component/combobox.md#sp_combobox_time) |
|
|
72
67
|
| Divider | `sp_divider` | [docs/component/divider.md](docs/component/divider.md) |
|
|
73
68
|
| Icon | `sp_icon` | [docs/component/icon.md](docs/component/icon.md) |
|
|
69
|
+
| Indicator | `sp_indicator` | [docs/component/indicator.md](docs/component/indicator.md) |
|
|
74
70
|
| Link | `sp_link` | [docs/component/link.md](docs/component/link.md) |
|
|
75
71
|
| List | `sp_list` | [docs/component/list.md](docs/component/list.md) |
|
|
76
72
|
| Modal | — (JS only) | [docs/component/modal.md](docs/component/modal.md) |
|
|
73
|
+
| OrderedList | `sp_ordered_list` | [docs/component/ordered_list.md](docs/component/ordered_list.md) |
|
|
77
74
|
| Popover | `sp_popover` | [docs/component/popover.md](docs/component/popover.md) |
|
|
78
|
-
|
|
|
75
|
+
| Progress | `sp_progress_bar`, `sp_progress_ring`, `sp_progress_meter` | [docs/component/progress.md](docs/component/progress.md) |
|
|
76
|
+
| Timeline | `sp_timeline`, `sp_timeline_group` | [docs/component/timeline.md](docs/component/timeline.md) |
|
|
79
77
|
|
|
80
78
|
## Form Builder
|
|
81
79
|
|
|
@@ -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,7 +451,14 @@
|
|
|
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",
|
|
@@ -301,7 +468,19 @@
|
|
|
301
468
|
],
|
|
302
469
|
"values": {},
|
|
303
470
|
"outlets": [],
|
|
304
|
-
"classes": []
|
|
471
|
+
"classes": [],
|
|
472
|
+
"actions": [
|
|
473
|
+
"drawToggle",
|
|
474
|
+
"format",
|
|
475
|
+
"onChange",
|
|
476
|
+
"onFormatting",
|
|
477
|
+
"onPaste",
|
|
478
|
+
"readValue",
|
|
479
|
+
"toggle"
|
|
480
|
+
],
|
|
481
|
+
"dispatches": [
|
|
482
|
+
"formatted"
|
|
483
|
+
]
|
|
305
484
|
},
|
|
306
485
|
"modal": {
|
|
307
486
|
"identifier": "modal",
|
|
@@ -311,7 +490,12 @@
|
|
|
311
490
|
],
|
|
312
491
|
"values": {},
|
|
313
492
|
"outlets": [],
|
|
314
|
-
"classes": []
|
|
493
|
+
"classes": [],
|
|
494
|
+
"actions": [
|
|
495
|
+
"close",
|
|
496
|
+
"open"
|
|
497
|
+
],
|
|
498
|
+
"dispatches": []
|
|
315
499
|
},
|
|
316
500
|
"panner": {
|
|
317
501
|
"identifier": "panner",
|
|
@@ -320,7 +504,9 @@
|
|
|
320
504
|
],
|
|
321
505
|
"values": {},
|
|
322
506
|
"outlets": [],
|
|
323
|
-
"classes": []
|
|
507
|
+
"classes": [],
|
|
508
|
+
"actions": [],
|
|
509
|
+
"dispatches": []
|
|
324
510
|
},
|
|
325
511
|
"popover": {
|
|
326
512
|
"identifier": "popover",
|
|
@@ -359,10 +545,114 @@
|
|
|
359
545
|
}
|
|
360
546
|
},
|
|
361
547
|
"outlets": [],
|
|
362
|
-
"classes": [
|
|
363
|
-
|
|
548
|
+
"classes": [],
|
|
549
|
+
"actions": [
|
|
550
|
+
"canLoad",
|
|
551
|
+
"close",
|
|
552
|
+
"closeOnSelect",
|
|
553
|
+
"contentLoaded",
|
|
554
|
+
"contentLoader",
|
|
555
|
+
"contentLoading",
|
|
556
|
+
"dismissed",
|
|
557
|
+
"getContentNode",
|
|
558
|
+
"hidden",
|
|
559
|
+
"open",
|
|
560
|
+
"shown",
|
|
561
|
+
"toggle"
|
|
562
|
+
],
|
|
563
|
+
"dispatches": []
|
|
564
|
+
},
|
|
565
|
+
"progress": {
|
|
566
|
+
"identifier": "progress",
|
|
567
|
+
"targets": [
|
|
568
|
+
"fill",
|
|
569
|
+
"meter"
|
|
570
|
+
],
|
|
571
|
+
"values": {
|
|
572
|
+
"variant": {
|
|
573
|
+
"type": "String",
|
|
574
|
+
"default": "bar"
|
|
575
|
+
},
|
|
576
|
+
"current": {
|
|
577
|
+
"type": "Number",
|
|
578
|
+
"default": 0
|
|
579
|
+
},
|
|
580
|
+
"min": {
|
|
581
|
+
"type": "Number",
|
|
582
|
+
"default": 0
|
|
583
|
+
},
|
|
584
|
+
"max": {
|
|
585
|
+
"type": "Number",
|
|
586
|
+
"default": 100
|
|
587
|
+
},
|
|
588
|
+
"indeterminate": {
|
|
589
|
+
"type": "Boolean",
|
|
590
|
+
"default": false
|
|
591
|
+
},
|
|
592
|
+
"indeterminateFraction": {
|
|
593
|
+
"type": "Number",
|
|
594
|
+
"default": 0.25
|
|
595
|
+
},
|
|
596
|
+
"optimum": {
|
|
597
|
+
"type": "Number"
|
|
598
|
+
},
|
|
599
|
+
"low": {
|
|
600
|
+
"type": "Number"
|
|
601
|
+
},
|
|
602
|
+
"high": {
|
|
603
|
+
"type": "Number"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"outlets": [],
|
|
607
|
+
"classes": [],
|
|
608
|
+
"actions": [
|
|
609
|
+
"clamp",
|
|
610
|
+
"percent",
|
|
611
|
+
"render",
|
|
612
|
+
"renderBar",
|
|
613
|
+
"renderMeter",
|
|
614
|
+
"renderRing",
|
|
615
|
+
"setCircumference",
|
|
616
|
+
"setValue"
|
|
617
|
+
],
|
|
618
|
+
"dispatches": [
|
|
619
|
+
"changed"
|
|
364
620
|
]
|
|
365
621
|
},
|
|
622
|
+
"reorderable": {
|
|
623
|
+
"identifier": "reorderable",
|
|
624
|
+
"targets": [
|
|
625
|
+
"item",
|
|
626
|
+
"handle",
|
|
627
|
+
"trigger"
|
|
628
|
+
],
|
|
629
|
+
"values": {
|
|
630
|
+
"moveKey": {
|
|
631
|
+
"type": "String",
|
|
632
|
+
"default": "Alt"
|
|
633
|
+
},
|
|
634
|
+
"editing": {
|
|
635
|
+
"type": "Boolean",
|
|
636
|
+
"default": false
|
|
637
|
+
},
|
|
638
|
+
"orientation": {
|
|
639
|
+
"type": "String",
|
|
640
|
+
"default": "vertical"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"outlets": [],
|
|
644
|
+
"classes": [],
|
|
645
|
+
"actions": [
|
|
646
|
+
"enterEditing",
|
|
647
|
+
"exitEditing",
|
|
648
|
+
"moved",
|
|
649
|
+
"onPointerDown",
|
|
650
|
+
"onPointerMove",
|
|
651
|
+
"onPointerUp",
|
|
652
|
+
"toggleEditing"
|
|
653
|
+
],
|
|
654
|
+
"dispatches": []
|
|
655
|
+
},
|
|
366
656
|
"timeline": {
|
|
367
657
|
"identifier": "timeline",
|
|
368
658
|
"targets": [
|
|
@@ -372,7 +662,23 @@
|
|
|
372
662
|
],
|
|
373
663
|
"values": {},
|
|
374
664
|
"outlets": [],
|
|
375
|
-
"classes": []
|
|
665
|
+
"classes": [],
|
|
666
|
+
"actions": [
|
|
667
|
+
"collapse",
|
|
668
|
+
"collapseItem",
|
|
669
|
+
"expand",
|
|
670
|
+
"expandItem",
|
|
671
|
+
"format",
|
|
672
|
+
"normalize",
|
|
673
|
+
"toggle",
|
|
674
|
+
"validate"
|
|
675
|
+
],
|
|
676
|
+
"dispatches": [
|
|
677
|
+
"collapse",
|
|
678
|
+
"collapsed",
|
|
679
|
+
"expand",
|
|
680
|
+
"expanded"
|
|
681
|
+
]
|
|
376
682
|
},
|
|
377
683
|
"visibility": {
|
|
378
684
|
"identifier": "visibility",
|
|
@@ -381,6 +687,11 @@
|
|
|
381
687
|
],
|
|
382
688
|
"values": {},
|
|
383
689
|
"outlets": [],
|
|
384
|
-
"classes": []
|
|
690
|
+
"classes": [],
|
|
691
|
+
"actions": [
|
|
692
|
+
"dismissed",
|
|
693
|
+
"toggle"
|
|
694
|
+
],
|
|
695
|
+
"dispatches": []
|
|
385
696
|
}
|
|
386
697
|
}
|