@pudge-ui/mcp-server 0.1.0

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.
Files changed (236) hide show
  1. package/README.md +63 -0
  2. package/dist/__tests__/catalog.test.d.ts +1 -0
  3. package/dist/__tests__/catalog.test.js +50 -0
  4. package/dist/__tests__/search.test.d.ts +1 -0
  5. package/dist/__tests__/search.test.js +44 -0
  6. package/dist/__tests__/validation.test.d.ts +1 -0
  7. package/dist/__tests__/validation.test.js +34 -0
  8. package/dist/assembler.d.ts +6 -0
  9. package/dist/assembler.js +95 -0
  10. package/dist/catalog.d.ts +22 -0
  11. package/dist/catalog.js +10 -0
  12. package/dist/index.d.ts +2 -0
  13. package/dist/index.js +33 -0
  14. package/dist/search.d.ts +5 -0
  15. package/dist/search.js +21 -0
  16. package/dist/tools.d.ts +105 -0
  17. package/dist/tools.js +129 -0
  18. package/package.json +55 -0
  19. package/spec/components/_index.yaml +822 -0
  20. package/spec/components/buttons/clear-button.md +89 -0
  21. package/spec/components/buttons/fn-grid.md +104 -0
  22. package/spec/components/buttons/gel-button.md +125 -0
  23. package/spec/components/buttons/icon-button.md +108 -0
  24. package/spec/components/buttons/keypad-button.md +123 -0
  25. package/spec/components/buttons/push-button.md +139 -0
  26. package/spec/components/buttons/rec-button.md +105 -0
  27. package/spec/components/buttons/rubber-button.md +100 -0
  28. package/spec/components/buttons/segmented-control.md +95 -0
  29. package/spec/components/data/assembled-panel.md +135 -0
  30. package/spec/components/data/data-table.md +116 -0
  31. package/spec/components/data/film-strip.md +110 -0
  32. package/spec/components/data/media-grid.md +98 -0
  33. package/spec/components/dials/click-wheel.md +115 -0
  34. package/spec/components/dials/cylindrical-horizontal.md +130 -0
  35. package/spec/components/dials/cylindrical-scroll.md +141 -0
  36. package/spec/components/dials/cylindrical-vertical.md +100 -0
  37. package/spec/components/dials/mode-dial.md +123 -0
  38. package/spec/components/dials/radial-knob.md +150 -0
  39. package/spec/components/dials/rotary-encoder.md +118 -0
  40. package/spec/components/forms/color-picker.md +99 -0
  41. package/spec/components/forms/file-input.md +105 -0
  42. package/spec/components/forms/search-bar.md +96 -0
  43. package/spec/components/forms/select.md +143 -0
  44. package/spec/components/forms/text-input.md +114 -0
  45. package/spec/components/forms/textarea.md +85 -0
  46. package/spec/components/indicators/accordion.md +137 -0
  47. package/spec/components/indicators/badges.md +87 -0
  48. package/spec/components/indicators/chips.md +93 -0
  49. package/spec/components/indicators/led-dots.md +103 -0
  50. package/spec/components/indicators/mode-badge.md +97 -0
  51. package/spec/components/indicators/profile-badge.md +99 -0
  52. package/spec/components/indicators/skeleton.md +94 -0
  53. package/spec/components/indicators/spinners.md +95 -0
  54. package/spec/components/indicators/status-chips.md +85 -0
  55. package/spec/components/indicators/transport-controls.md +114 -0
  56. package/spec/components/meters/battery-icon.md +104 -0
  57. package/spec/components/meters/eq-bars.md +93 -0
  58. package/spec/components/meters/ev-meter.md +96 -0
  59. package/spec/components/meters/exposure-scale.md +110 -0
  60. package/spec/components/meters/gauge-full.md +102 -0
  61. package/spec/components/meters/gauge-semi.md +113 -0
  62. package/spec/components/meters/histogram.md +70 -0
  63. package/spec/components/meters/level-indicator.md +95 -0
  64. package/spec/components/meters/oscilloscope.md +83 -0
  65. package/spec/components/meters/progress-bar.md +84 -0
  66. package/spec/components/meters/signal-bars.md +80 -0
  67. package/spec/components/meters/signal-meter.md +84 -0
  68. package/spec/components/meters/vu-meter.md +88 -0
  69. package/spec/components/meters/waveform.md +70 -0
  70. package/spec/components/navigation/breadcrumbs.md +94 -0
  71. package/spec/components/navigation/context-menu.md +94 -0
  72. package/spec/components/navigation/d-pad.md +121 -0
  73. package/spec/components/navigation/drawer.md +103 -0
  74. package/spec/components/navigation/menu-grid.md +113 -0
  75. package/spec/components/navigation/menu-list.md +134 -0
  76. package/spec/components/navigation/pagination.md +100 -0
  77. package/spec/components/navigation/rack-panel.md +124 -0
  78. package/spec/components/navigation/scrollbar.md +97 -0
  79. package/spec/components/navigation/status-bar.md +117 -0
  80. package/spec/components/navigation/tab-bar.md +104 -0
  81. package/spec/components/overlays/chassis-panel.md +94 -0
  82. package/spec/components/overlays/device-bezel.md +83 -0
  83. package/spec/components/overlays/dialog.md +100 -0
  84. package/spec/components/overlays/focus-brackets.md +124 -0
  85. package/spec/components/overlays/grid-overlay.md +93 -0
  86. package/spec/components/overlays/modal.md +89 -0
  87. package/spec/components/overlays/panel.md +114 -0
  88. package/spec/components/overlays/plastic-card.md +92 -0
  89. package/spec/components/overlays/popover.md +75 -0
  90. package/spec/components/overlays/toast.md +93 -0
  91. package/spec/components/overlays/tooltip.md +85 -0
  92. package/spec/components/readouts/camera-readout.md +123 -0
  93. package/spec/components/readouts/dot-matrix.md +88 -0
  94. package/spec/components/readouts/lcd-readout.md +116 -0
  95. package/spec/components/readouts/resource-monitor.md +98 -0
  96. package/spec/components/readouts/seven-segment.md +110 -0
  97. package/spec/components/readouts/signal-display.md +93 -0
  98. package/spec/components/readouts/timecode-display.md +94 -0
  99. package/spec/components/sliders/crossfader.md +102 -0
  100. package/spec/components/sliders/dual-range.md +97 -0
  101. package/spec/components/sliders/range-fader.md +100 -0
  102. package/spec/components/sliders/scrubber.md +104 -0
  103. package/spec/components/sliders/stepper.md +106 -0
  104. package/spec/components/sliders/vertical-fader.md +116 -0
  105. package/spec/components/sliders/volume-slider.md +107 -0
  106. package/spec/components/toggles/dip-switch.md +100 -0
  107. package/spec/components/toggles/led-checkbox.md +108 -0
  108. package/spec/components/toggles/power-toggle.md +93 -0
  109. package/spec/components/toggles/radio-button.md +106 -0
  110. package/spec/components/toggles/rocker-switch.md +92 -0
  111. package/spec/components/toggles/slide-switch.md +121 -0
  112. package/spec/components/toggles/toggle-switch.md +135 -0
  113. package/spec/compositions/audio-mixer-strip.md +62 -0
  114. package/spec/compositions/camera-viewfinder.md +66 -0
  115. package/spec/compositions/phone-interface.md +66 -0
  116. package/spec/foundation/accessibility.md +33 -0
  117. package/spec/foundation/canvas.md +20 -0
  118. package/spec/foundation/depth-model.md +82 -0
  119. package/spec/foundation/layout.md +33 -0
  120. package/spec/foundation/materials.md +68 -0
  121. package/spec/foundation/naming.md +33 -0
  122. package/spec/foundation/philosophy.md +27 -0
  123. package/spec/foundation/theme.md +39 -0
  124. package/spec/foundation/tokens.md +148 -0
  125. package/spec/guides/extension.md +189 -0
  126. package/spec/guides/for-llms.md +129 -0
  127. package/spec/guides/prompt-templates.md +143 -0
  128. package/spec/spec/components/_index.yaml +822 -0
  129. package/spec/spec/components/buttons/clear-button.md +89 -0
  130. package/spec/spec/components/buttons/fn-grid.md +104 -0
  131. package/spec/spec/components/buttons/gel-button.md +125 -0
  132. package/spec/spec/components/buttons/icon-button.md +108 -0
  133. package/spec/spec/components/buttons/keypad-button.md +123 -0
  134. package/spec/spec/components/buttons/push-button.md +139 -0
  135. package/spec/spec/components/buttons/rec-button.md +105 -0
  136. package/spec/spec/components/buttons/rubber-button.md +100 -0
  137. package/spec/spec/components/buttons/segmented-control.md +95 -0
  138. package/spec/spec/components/data/assembled-panel.md +135 -0
  139. package/spec/spec/components/data/data-table.md +116 -0
  140. package/spec/spec/components/data/film-strip.md +110 -0
  141. package/spec/spec/components/data/media-grid.md +98 -0
  142. package/spec/spec/components/dials/click-wheel.md +115 -0
  143. package/spec/spec/components/dials/cylindrical-horizontal.md +130 -0
  144. package/spec/spec/components/dials/cylindrical-scroll.md +141 -0
  145. package/spec/spec/components/dials/cylindrical-vertical.md +100 -0
  146. package/spec/spec/components/dials/mode-dial.md +123 -0
  147. package/spec/spec/components/dials/radial-knob.md +150 -0
  148. package/spec/spec/components/dials/rotary-encoder.md +118 -0
  149. package/spec/spec/components/forms/color-picker.md +99 -0
  150. package/spec/spec/components/forms/file-input.md +105 -0
  151. package/spec/spec/components/forms/search-bar.md +96 -0
  152. package/spec/spec/components/forms/select.md +143 -0
  153. package/spec/spec/components/forms/text-input.md +114 -0
  154. package/spec/spec/components/forms/textarea.md +85 -0
  155. package/spec/spec/components/indicators/accordion.md +137 -0
  156. package/spec/spec/components/indicators/badges.md +87 -0
  157. package/spec/spec/components/indicators/chips.md +93 -0
  158. package/spec/spec/components/indicators/led-dots.md +103 -0
  159. package/spec/spec/components/indicators/mode-badge.md +97 -0
  160. package/spec/spec/components/indicators/profile-badge.md +99 -0
  161. package/spec/spec/components/indicators/skeleton.md +94 -0
  162. package/spec/spec/components/indicators/spinners.md +95 -0
  163. package/spec/spec/components/indicators/status-chips.md +85 -0
  164. package/spec/spec/components/indicators/transport-controls.md +114 -0
  165. package/spec/spec/components/meters/battery-icon.md +104 -0
  166. package/spec/spec/components/meters/eq-bars.md +93 -0
  167. package/spec/spec/components/meters/ev-meter.md +96 -0
  168. package/spec/spec/components/meters/exposure-scale.md +110 -0
  169. package/spec/spec/components/meters/gauge-full.md +102 -0
  170. package/spec/spec/components/meters/gauge-semi.md +113 -0
  171. package/spec/spec/components/meters/histogram.md +70 -0
  172. package/spec/spec/components/meters/level-indicator.md +95 -0
  173. package/spec/spec/components/meters/oscilloscope.md +83 -0
  174. package/spec/spec/components/meters/progress-bar.md +84 -0
  175. package/spec/spec/components/meters/signal-bars.md +80 -0
  176. package/spec/spec/components/meters/signal-meter.md +84 -0
  177. package/spec/spec/components/meters/vu-meter.md +88 -0
  178. package/spec/spec/components/meters/waveform.md +70 -0
  179. package/spec/spec/components/navigation/breadcrumbs.md +94 -0
  180. package/spec/spec/components/navigation/context-menu.md +94 -0
  181. package/spec/spec/components/navigation/d-pad.md +121 -0
  182. package/spec/spec/components/navigation/drawer.md +103 -0
  183. package/spec/spec/components/navigation/menu-grid.md +113 -0
  184. package/spec/spec/components/navigation/menu-list.md +134 -0
  185. package/spec/spec/components/navigation/pagination.md +100 -0
  186. package/spec/spec/components/navigation/rack-panel.md +124 -0
  187. package/spec/spec/components/navigation/scrollbar.md +97 -0
  188. package/spec/spec/components/navigation/status-bar.md +117 -0
  189. package/spec/spec/components/navigation/tab-bar.md +104 -0
  190. package/spec/spec/components/overlays/chassis-panel.md +94 -0
  191. package/spec/spec/components/overlays/device-bezel.md +83 -0
  192. package/spec/spec/components/overlays/dialog.md +100 -0
  193. package/spec/spec/components/overlays/focus-brackets.md +124 -0
  194. package/spec/spec/components/overlays/grid-overlay.md +93 -0
  195. package/spec/spec/components/overlays/modal.md +89 -0
  196. package/spec/spec/components/overlays/panel.md +114 -0
  197. package/spec/spec/components/overlays/plastic-card.md +92 -0
  198. package/spec/spec/components/overlays/popover.md +75 -0
  199. package/spec/spec/components/overlays/toast.md +93 -0
  200. package/spec/spec/components/overlays/tooltip.md +85 -0
  201. package/spec/spec/components/readouts/camera-readout.md +123 -0
  202. package/spec/spec/components/readouts/dot-matrix.md +88 -0
  203. package/spec/spec/components/readouts/lcd-readout.md +116 -0
  204. package/spec/spec/components/readouts/resource-monitor.md +98 -0
  205. package/spec/spec/components/readouts/seven-segment.md +110 -0
  206. package/spec/spec/components/readouts/signal-display.md +93 -0
  207. package/spec/spec/components/readouts/timecode-display.md +94 -0
  208. package/spec/spec/components/sliders/crossfader.md +102 -0
  209. package/spec/spec/components/sliders/dual-range.md +97 -0
  210. package/spec/spec/components/sliders/range-fader.md +100 -0
  211. package/spec/spec/components/sliders/scrubber.md +104 -0
  212. package/spec/spec/components/sliders/stepper.md +106 -0
  213. package/spec/spec/components/sliders/vertical-fader.md +116 -0
  214. package/spec/spec/components/sliders/volume-slider.md +107 -0
  215. package/spec/spec/components/toggles/dip-switch.md +100 -0
  216. package/spec/spec/components/toggles/led-checkbox.md +108 -0
  217. package/spec/spec/components/toggles/power-toggle.md +93 -0
  218. package/spec/spec/components/toggles/radio-button.md +106 -0
  219. package/spec/spec/components/toggles/rocker-switch.md +92 -0
  220. package/spec/spec/components/toggles/slide-switch.md +121 -0
  221. package/spec/spec/components/toggles/toggle-switch.md +135 -0
  222. package/spec/spec/compositions/audio-mixer-strip.md +62 -0
  223. package/spec/spec/compositions/camera-viewfinder.md +66 -0
  224. package/spec/spec/compositions/phone-interface.md +66 -0
  225. package/spec/spec/foundation/accessibility.md +33 -0
  226. package/spec/spec/foundation/canvas.md +20 -0
  227. package/spec/spec/foundation/depth-model.md +82 -0
  228. package/spec/spec/foundation/layout.md +33 -0
  229. package/spec/spec/foundation/materials.md +68 -0
  230. package/spec/spec/foundation/naming.md +33 -0
  231. package/spec/spec/foundation/philosophy.md +27 -0
  232. package/spec/spec/foundation/theme.md +39 -0
  233. package/spec/spec/foundation/tokens.md +148 -0
  234. package/spec/spec/guides/extension.md +189 -0
  235. package/spec/spec/guides/for-llms.md +129 -0
  236. package/spec/spec/guides/prompt-templates.md +143 -0
@@ -0,0 +1,822 @@
1
+ categories:
2
+ - id: buttons
3
+ label: "Buttons & Pressable Controls"
4
+ prefix: A
5
+ count: 9
6
+ description: "Tactile switches, dome buttons, keypads — the things you press"
7
+
8
+ - id: toggles
9
+ label: "Toggle & Switch Controls"
10
+ prefix: B
11
+ count: 7
12
+ description: "Slide switches, rockers, DIP switches — binary state controls"
13
+
14
+ - id: dials
15
+ label: "Rotary & Dial Controls"
16
+ prefix: C
17
+ count: 7
18
+ description: "Rotary encoders, mode dials, click wheels — things that rotate"
19
+
20
+ - id: sliders
21
+ label: "Slider & Range Controls"
22
+ prefix: D
23
+ count: 7
24
+ description: "Faders, scrubbers, crossfaders — linear motion controls"
25
+
26
+ - id: readouts
27
+ label: "Display & Readout Components"
28
+ prefix: E
29
+ count: 7
30
+ description: "OLED displays, LCD readouts, 7-segment, dot matrix — data output"
31
+
32
+ - id: meters
33
+ label: "Meter & Visualization"
34
+ prefix: F
35
+ count: 14
36
+ description: "VU meters, spectrum analyzers, gauges, oscilloscopes — signal visualization"
37
+
38
+ - id: navigation
39
+ label: "Navigation & Menu"
40
+ prefix: G
41
+ count: 11
42
+ description: "Menu grids, lists, tab bars, D-pads — moving through content"
43
+
44
+ - id: forms
45
+ label: "Form Inputs"
46
+ prefix: H
47
+ count: 6
48
+ description: "Text inputs, search bars, dropdowns — data entry styled as hardware"
49
+
50
+ - id: overlays
51
+ label: "Overlays & Containers"
52
+ prefix: I
53
+ count: 11
54
+ description: "Panels, bezels, dialogs, tooltips — framing and containing content"
55
+
56
+ - id: indicators
57
+ label: "Status & Indicators"
58
+ prefix: J
59
+ count: 10
60
+ description: "LEDs, badges, spinners, transport controls — status communication"
61
+
62
+ - id: data
63
+ label: "Data Display"
64
+ prefix: K
65
+ count: 4
66
+ description: "Tables, media grids, film strips — structured data presentation"
67
+
68
+ components:
69
+ # ── A. Buttons ──
70
+ - id: push-button
71
+ name: Push Button
72
+ class: .push-btn
73
+ category: buttons
74
+ file: buttons/push-button.md
75
+ tags: [button, tactile, camera, press, dome-switch, sony, nikon]
76
+ description: "Camera-style tactile dome switch button with 3-plane shadow depth"
77
+
78
+ - id: gel-button
79
+ name: Gel Button
80
+ class: .gel-btn
81
+ category: buttons
82
+ file: buttons/gel-button.md
83
+ tags: [button, glossy, ipod, polycarbonate, gel, translucent]
84
+ description: "Glossy polycarbonate button with Fresnel catch-light reflection"
85
+
86
+ - id: rubber-button
87
+ name: Rubber Button
88
+ class: .rubber-btn
89
+ category: buttons
90
+ file: buttons/rubber-button.md
91
+ tags: [button, rubber, matte, gameboy, soft-touch, pill]
92
+ description: "Soft-touch silicone rubber dome button with matte finish"
93
+
94
+ - id: clear-button
95
+ name: Clear/Glass Button
96
+ class: .clear-btn
97
+ category: buttons
98
+ file: buttons/clear-button.md
99
+ tags: [button, glass, translucent, frosted, imac, clear]
100
+ description: "Transparent/frosted acrylic button with backdrop blur"
101
+
102
+ - id: keypad-button
103
+ name: Keypad Button
104
+ class: .keypad-btn
105
+ category: buttons
106
+ file: buttons/keypad-button.md
107
+ tags: [button, keypad, nokia, phone, t9, number-pad]
108
+ description: "Nokia-style T9 number pad key with secondary letter labels"
109
+
110
+ - id: rec-button
111
+ name: REC Button
112
+ class: .rec-btn
113
+ category: buttons
114
+ file: buttons/rec-button.md
115
+ tags: [button, record, camera, video, red, concave]
116
+ description: "Camera record button — concave red with guard ring and stop-square animation"
117
+
118
+ - id: fn-grid
119
+ name: Function Grid
120
+ class: .fn-btn
121
+ category: buttons
122
+ file: buttons/fn-grid.md
123
+ tags: [button, grid, function, camera, matrix, icon]
124
+ description: "Camera Fn button matrix — 2x2 or 2x3 grid of labeled function buttons"
125
+
126
+ - id: icon-button
127
+ name: Icon Button
128
+ class: .icon-btn
129
+ category: buttons
130
+ file: buttons/icon-button.md
131
+ tags: [button, icon, toolbar, round, square]
132
+ description: "Small toolbar button with icon instead of text label"
133
+
134
+ - id: segmented-control
135
+ name: Segmented Control
136
+ class: .segmented
137
+ category: buttons
138
+ file: buttons/segmented-control.md
139
+ tags: [button, segmented, radio, dip-switch, selector, mode]
140
+ description: "DIP switch bank radio group — mutually exclusive button row"
141
+
142
+ # ── B. Toggles ──
143
+ - id: toggle-switch
144
+ name: Toggle Switch
145
+ class: .toggle-track
146
+ category: toggles
147
+ file: toggles/toggle-switch.md
148
+ tags: [toggle, switch, camera, af, slide, spdt]
149
+ description: "Camera-style SPDT slide switch with detent mechanism"
150
+
151
+ - id: slide-switch
152
+ name: Slide Switch
153
+ class: .slide-track
154
+ category: toggles
155
+ file: toggles/slide-switch.md
156
+ tags: [toggle, slide, ipod, hold, phone, silent]
157
+ description: "iPod hold switch / phone silent switch with larger thumb"
158
+
159
+ - id: rocker-switch
160
+ name: Rocker Switch
161
+ class: .rocker
162
+ category: toggles
163
+ file: toggles/rocker-switch.md
164
+ tags: [toggle, rocker, volume, phone, side, momentary]
165
+ description: "Phone side volume rocker — momentary see-saw pivot"
166
+
167
+ - id: power-toggle
168
+ name: Power Toggle
169
+ class: .power-toggle
170
+ category: toggles
171
+ file: toggles/power-toggle.md
172
+ tags: [toggle, power, industrial, switch, led]
173
+ description: "Industrial power switch with integrated status LED"
174
+
175
+ - id: dip-switch
176
+ name: DIP Switch Row
177
+ class: .dip-switch
178
+ category: toggles
179
+ file: toggles/dip-switch.md
180
+ tags: [toggle, dip, switch, pcb, binary, synthesizer, 8-bit]
181
+ description: "PCB DIP switch bank — 8-position binary configuration"
182
+
183
+ - id: led-checkbox
184
+ name: LED Checkbox
185
+ class: .led-checkbox
186
+ category: toggles
187
+ file: toggles/led-checkbox.md
188
+ tags: [checkbox, led, indicator, mixer, solo, mute]
189
+ description: "Mixing desk LED indicator that doubles as a toggle button"
190
+
191
+ - id: radio-button
192
+ name: Radio Button
193
+ class: .radio-wrap
194
+ category: toggles
195
+ file: toggles/radio-button.md
196
+ tags: [radio, selector, detent, dot, exclusive]
197
+ description: "Rotary selector dot adapted to linear layout — mutually exclusive"
198
+
199
+ # ── C. Dials ──
200
+ - id: rotary-encoder
201
+ name: Rotary Encoder
202
+ class: .rotary
203
+ category: dials
204
+ file: dials/rotary-encoder.md
205
+ tags: [dial, rotary, encoder, knurled, knob, infinite, detent]
206
+ description: "Infinite-rotation knurled knob with optical/mechanical encoder"
207
+
208
+ - id: mode-dial
209
+ name: Mode Dial
210
+ class: .mode-dial-body
211
+ category: dials
212
+ file: dials/mode-dial.md
213
+ tags: [dial, mode, camera, selector, detent, nikon, canon]
214
+ description: "Camera PASM mode selector with fixed positions and lock mechanism"
215
+
216
+ - id: radial-knob
217
+ name: Radial Knob
218
+ class: .radial-knob
219
+ category: dials
220
+ file: dials/radial-knob.md
221
+ tags: [dial, knob, potentiometer, volume, pan, eq, 3-materials]
222
+ description: "Rotary potentiometer knob with 270-degree range — rubber/metal/glossy variants"
223
+
224
+ - id: cylindrical-scroll
225
+ name: Cylindrical Scroll Dial
226
+ class: .dial-cylinder
227
+ category: dials
228
+ file: dials/cylindrical-scroll.md
229
+ tags: [dial, cylinder, scroll, barrel, camera, parameter, sony]
230
+ description: "Camera parameter barrel — values scroll past a selection line"
231
+
232
+ - id: cylindrical-horizontal
233
+ name: Cylindrical Dial (Horizontal)
234
+ class: .dial-h-body
235
+ category: dials
236
+ file: dials/cylindrical-horizontal.md
237
+ tags: [dial, cylinder, horizontal, command, nikon, dslr]
238
+ description: "DSLR front/rear command dial — horizontal barrel with diamond knurl"
239
+
240
+ - id: cylindrical-vertical
241
+ name: Cylindrical Dial (Vertical)
242
+ class: .dial-v-body
243
+ category: dials
244
+ file: dials/cylindrical-vertical.md
245
+ tags: [dial, cylinder, vertical, thumb, wheel]
246
+ description: "Vertical thumb wheel for single-hand operation"
247
+
248
+ - id: click-wheel
249
+ name: Click Wheel
250
+ class: .clickwheel
251
+ category: dials
252
+ file: dials/click-wheel.md
253
+ tags: [dial, clickwheel, ipod, capacitive, touch, scroll, apple]
254
+ description: "iPod Classic capacitive touch wheel with mechanical center button"
255
+
256
+ # ── D. Sliders ──
257
+ - id: volume-slider
258
+ name: Volume Slider
259
+ class: .slider-track
260
+ category: sliders
261
+ file: sliders/volume-slider.md
262
+ tags: [slider, volume, ipod, linear, track, thumb]
263
+ description: "iPod-style volume bar with gradient fill and draggable thumb"
264
+
265
+ - id: scrubber
266
+ name: Scrubber
267
+ class: .scrubber-track
268
+ category: sliders
269
+ file: sliders/scrubber.md
270
+ tags: [slider, scrubber, timeline, playback, media, position]
271
+ description: "Media player timeline scrubber with elapsed/total time labels"
272
+
273
+ - id: range-fader
274
+ name: Range Fader
275
+ class: .fader-h-track
276
+ category: sliders
277
+ file: sliders/range-fader.md
278
+ tags: [slider, fader, console, mixing, horizontal, rectangular-thumb]
279
+ description: "Mixing console horizontal fader with rectangular thumb grip"
280
+
281
+ - id: dual-range
282
+ name: Dual Range Slider
283
+ class: .dual-range-track
284
+ category: sliders
285
+ file: sliders/dual-range.md
286
+ tags: [slider, range, dual, parametric, eq, band]
287
+ description: "Two-thumb range selector for defining a value band"
288
+
289
+ - id: crossfader
290
+ name: Crossfader
291
+ class: .crossfader-track
292
+ category: sliders
293
+ file: sliders/crossfader.md
294
+ tags: [slider, crossfader, dj, console, blend, deck]
295
+ description: "DJ console crossfader — blends between two sources with center detent"
296
+
297
+ - id: stepper
298
+ name: Stepper
299
+ class: .stepper
300
+ category: sliders
301
+ file: sliders/stepper.md
302
+ tags: [stepper, increment, decrement, counter, channel, numeric]
303
+ description: "Numeric +/- increment control with value display"
304
+
305
+ - id: vertical-fader
306
+ name: Vertical Fader
307
+ class: .fader-v-track
308
+ category: sliders
309
+ file: sliders/vertical-fader.md
310
+ tags: [slider, fader, vertical, channel, mixing, console, ssl]
311
+ description: "Mixing console channel fader — tall vertical linear potentiometer"
312
+
313
+ # ── E. Readouts ──
314
+ - id: signal-display
315
+ name: Signal Display
316
+ class: .signal-display
317
+ category: readouts
318
+ file: readouts/signal-display.md
319
+ tags: [display, oled, signal, industrial, readout, large]
320
+ description: "Industrial OLED readout — deep recess with high-contrast phosphor display"
321
+
322
+ - id: camera-readout
323
+ name: Camera Readout
324
+ class: .readout
325
+ category: readouts
326
+ file: readouts/camera-readout.md
327
+ tags: [display, readout, camera, viewfinder, exposure, parameter]
328
+ description: "Camera viewfinder data overlay — shutter/aperture/ISO with 6 variants"
329
+
330
+ - id: lcd-readout
331
+ name: LCD Readout
332
+ class: .lcd-readout
333
+ category: readouts
334
+ file: readouts/lcd-readout.md
335
+ tags: [display, lcd, pixel, retro, ipod, gameboy, 4-colors]
336
+ description: "Retro LCD with VT323 pixel font — blue/green/amber/pink color variants"
337
+
338
+ - id: timecode-display
339
+ name: Timecode Display
340
+ class: .timecode-display
341
+ category: readouts
342
+ file: readouts/timecode-display.md
343
+ tags: [display, timecode, smpte, broadcast, video, hh-mm-ss-ff]
344
+ description: "SMPTE timecode readout (HH:MM:SS:FF) with blinking colon"
345
+
346
+ - id: resource-monitor
347
+ name: Resource Monitor
348
+ class: .resource
349
+ category: readouts
350
+ file: readouts/resource-monitor.md
351
+ tags: [display, resource, cpu, memory, gauge, system, monitor]
352
+ description: "System resource gauge with label, value, and fill bar"
353
+
354
+ - id: seven-segment
355
+ name: Seven-Segment Display
356
+ class: .seven-seg
357
+ category: readouts
358
+ file: readouts/seven-segment.md
359
+ tags: [display, seven-segment, led, alarm-clock, calculator, digits]
360
+ description: "LED seven-segment digit display — red/green/amber variants"
361
+
362
+ - id: dot-matrix
363
+ name: Dot Matrix Display
364
+ class: .dot-matrix
365
+ category: readouts
366
+ file: readouts/dot-matrix.md
367
+ tags: [display, dot-matrix, led, marquee, scroll, ticker, text]
368
+ description: "LED dot matrix with scrolling marquee text animation"
369
+
370
+ # ── F. Meters ──
371
+ - id: signal-meter
372
+ name: Signal Meter
373
+ class: .signal-meter
374
+ category: meters
375
+ file: meters/signal-meter.md
376
+ tags: [meter, spectrum, analyzer, bars, led, equalizer]
377
+ description: "LED bar graph spectrum analyzer with green gradient bars"
378
+
379
+ - id: ev-meter
380
+ name: EV Meter
381
+ class: .ev-meter
382
+ category: meters
383
+ file: meters/ev-meter.md
384
+ tags: [meter, exposure, ev, camera, vertical, viewfinder]
385
+ description: "Camera exposure compensation meter — vertical bar from center zero"
386
+
387
+ - id: vu-meter
388
+ name: VU Meter
389
+ class: .vu-meter
390
+ category: meters
391
+ file: meters/vu-meter.md
392
+ tags: [meter, vu, audio, level, green-amber-red, volume-unit]
393
+ description: "Audio volume unit meter — green/amber/red gradient bars"
394
+
395
+ - id: eq-bars
396
+ name: Equalizer Bars
397
+ class: .eq-bars
398
+ category: meters
399
+ file: meters/eq-bars.md
400
+ tags: [meter, equalizer, frequency, bands, warm, bright, graphic-eq]
401
+ description: "Graphic EQ frequency band display with warm/cool color coding"
402
+
403
+ - id: histogram
404
+ name: Histogram
405
+ class: .histogram-wrap
406
+ category: meters
407
+ file: meters/histogram.md
408
+ tags: [meter, histogram, camera, luminance, canvas, distribution]
409
+ description: "Camera luminance histogram rendered on canvas"
410
+
411
+ - id: waveform
412
+ name: Waveform
413
+ class: .waveform-wrap
414
+ category: meters
415
+ file: meters/waveform.md
416
+ tags: [meter, waveform, video, broadcast, canvas, parade]
417
+ description: "Video waveform monitor rendered on canvas"
418
+
419
+ - id: progress-bar
420
+ name: Progress Bar
421
+ class: .progress-track
422
+ category: meters
423
+ file: meters/progress-bar.md
424
+ tags: [meter, progress, loading, transfer, fill, percentage]
425
+ description: "Loading/transfer progress indicator with gradient fill"
426
+
427
+ - id: signal-bars
428
+ name: Signal Strength Bars
429
+ class: .signal-bars
430
+ category: meters
431
+ file: meters/signal-bars.md
432
+ tags: [meter, signal, strength, phone, rssi, nokia, bars]
433
+ description: "Phone signal strength indicator — 5-bar ascending staircase"
434
+
435
+ - id: battery-icon
436
+ name: Battery Icon
437
+ class: .battery-icon
438
+ category: meters
439
+ file: meters/battery-icon.md
440
+ tags: [meter, battery, charge, level, green-amber-red, icon]
441
+ description: "Battery charge indicator with 3-color fill states"
442
+
443
+ - id: level-indicator
444
+ name: Level Indicator
445
+ class: .level-bar
446
+ category: meters
447
+ file: meters/level-indicator.md
448
+ tags: [meter, level, horizon, camera, spirit-level, tilt]
449
+ description: "Camera horizon level — spirit level with center mark"
450
+
451
+ - id: exposure-scale
452
+ name: Exposure Scale
453
+ class: .exp-scale
454
+ category: meters
455
+ file: meters/exposure-scale.md
456
+ tags: [meter, exposure, scale, ruler, tick, ev, viewfinder]
457
+ description: "Viewfinder EV ruler with tick marks and floating indicator dot"
458
+
459
+ - id: gauge-semi
460
+ name: Analog Gauge (Semicircle)
461
+ class: .gauge-semi
462
+ category: meters
463
+ file: meters/gauge-semi.md
464
+ tags: [meter, gauge, analog, needle, vu, semicircle, galvanometer]
465
+ description: "D'Arsonval moving-coil VU needle meter with spring return"
466
+
467
+ - id: gauge-full
468
+ name: Analog Gauge (Full Circle)
469
+ class: .gauge-full
470
+ category: meters
471
+ file: meters/gauge-full.md
472
+ tags: [meter, gauge, analog, compass, rpm, full-circle, needle]
473
+ description: "Full 360-degree rotating needle indicator — compass/tachometer"
474
+
475
+ - id: oscilloscope
476
+ name: Oscilloscope
477
+ class: .oscilloscope
478
+ category: meters
479
+ file: meters/oscilloscope.md
480
+ tags: [meter, oscilloscope, trace, crt, phosphor, waveform, animated, canvas]
481
+ description: "Animated CRT oscilloscope trace with phosphor persistence effect"
482
+
483
+ # ── G. Navigation ──
484
+ - id: menu-grid
485
+ name: Menu Grid
486
+ class: .menu-grid
487
+ category: navigation
488
+ file: navigation/menu-grid.md
489
+ tags: [navigation, menu, grid, phone, nokia, 3x3, icon]
490
+ description: "Nokia-style 3x3 phone app menu with icons and labels"
491
+
492
+ - id: menu-list
493
+ name: Menu List
494
+ class: .menu-list-wrap
495
+ category: navigation
496
+ file: navigation/menu-list.md
497
+ tags: [navigation, menu, list, ipod, scroll, arrow, hierarchical]
498
+ description: "iPod-style scrolling menu list with right arrows"
499
+
500
+ - id: tab-bar
501
+ name: Tab Bar
502
+ class: .tab-bar
503
+ category: navigation
504
+ file: navigation/tab-bar.md
505
+ tags: [navigation, tabs, bar, mode, section, segmented]
506
+ description: "Device mode tab bar with active underline indicator"
507
+
508
+ - id: d-pad
509
+ name: D-Pad
510
+ class: .dpad
511
+ category: navigation
512
+ file: navigation/d-pad.md
513
+ tags: [navigation, dpad, directional, gameboy, cross, rocker]
514
+ description: "Gameboy-style cross-shaped directional pad with center select"
515
+
516
+ - id: status-bar
517
+ name: Status Bar
518
+ class: .status-bar
519
+ category: navigation
520
+ file: navigation/status-bar.md
521
+ tags: [navigation, status, bar, hud, phone, viewfinder, top]
522
+ description: "Phone/viewfinder top status strip with time, signal, battery"
523
+
524
+ - id: rack-panel
525
+ name: Rack Panel
526
+ class: .rack-panel
527
+ category: navigation
528
+ file: navigation/rack-panel.md
529
+ tags: [navigation, sidebar, rack, panel, 19-inch, channel, module]
530
+ description: "19-inch rack equipment sidebar with channel slots and LED indicators"
531
+
532
+ - id: breadcrumbs
533
+ name: Breadcrumbs
534
+ class: .breadcrumbs
535
+ category: navigation
536
+ file: navigation/breadcrumbs.md
537
+ tags: [navigation, breadcrumbs, path, chain, channel, routing]
538
+ description: "Channel strip label chain showing navigation path"
539
+
540
+ - id: pagination
541
+ name: Pagination
542
+ class: .pagination
543
+ category: navigation
544
+ file: navigation/pagination.md
545
+ tags: [navigation, pagination, page, track, number, selector]
546
+ description: "Track/channel numbered buttons for page navigation"
547
+
548
+ - id: context-menu
549
+ name: Context Menu (Radial)
550
+ class: .radial-menu
551
+ category: navigation
552
+ file: navigation/context-menu.md
553
+ tags: [navigation, context, radial, pie, quick-access, wheel]
554
+ description: "Radial/pie menu for quick-access actions — 4-8 items in a circle"
555
+
556
+ - id: scrollbar
557
+ name: Custom Scrollbar
558
+ class: .custom-scrollbar-demo
559
+ category: navigation
560
+ file: navigation/scrollbar.md
561
+ tags: [navigation, scrollbar, scroll, groove, thumb, custom]
562
+ description: "Mechanical groove scrollbar with styled thumb"
563
+
564
+ - id: drawer
565
+ name: Drawer
566
+ class: .drawer-demo
567
+ category: navigation
568
+ file: navigation/drawer.md
569
+ tags: [navigation, drawer, slide, panel, tray, cd-player, rack]
570
+ description: "Sliding tray panel — CD player tray mechanism with damped slide"
571
+
572
+ # ── H. Forms ──
573
+ - id: text-input
574
+ name: Text Input
575
+ class: .text-input
576
+ category: forms
577
+ file: forms/text-input.md
578
+ tags: [form, input, text, field, lcd, phosphor, recessed]
579
+ description: "Recessed phosphor display field for text entry"
580
+
581
+ - id: textarea
582
+ name: Textarea
583
+ class: .text-area
584
+ category: forms
585
+ file: forms/textarea.md
586
+ tags: [form, textarea, multiline, lcd, entry]
587
+ description: "Multi-line LCD text entry field"
588
+
589
+ - id: search-bar
590
+ name: Search Bar
591
+ class: .search-bar
592
+ category: forms
593
+ file: forms/search-bar.md
594
+ tags: [form, search, bar, pill, magnifier, ipod]
595
+ description: "Pill-shaped search input with magnifying glass icon"
596
+
597
+ - id: select
598
+ name: Select / Dropdown
599
+ class: .select-wrap
600
+ category: forms
601
+ file: forms/select.md
602
+ tags: [form, select, dropdown, menu, selector, option]
603
+ description: "Mechanical selector switch — trigger button with dropdown list"
604
+
605
+ - id: color-picker
606
+ name: Color Picker (TV Bars)
607
+ class: .color-bar-picker
608
+ category: forms
609
+ file: forms/color-picker.md
610
+ tags: [form, color, picker, smpte, tv, bars, broadcast]
611
+ description: "SMPTE color bar test pattern as a selectable color picker"
612
+
613
+ - id: file-input
614
+ name: File Input (Card Slot)
615
+ class: .file-input
616
+ category: forms
617
+ file: forms/file-input.md
618
+ tags: [form, file, input, card, slot, cf, sd, eject, memory]
619
+ description: "CompactFlash/SD card slot with dashed border and eject button"
620
+
621
+ # ── I. Overlays ──
622
+ - id: panel
623
+ name: Panel
624
+ class: .panel
625
+ category: overlays
626
+ file: overlays/panel.md
627
+ tags: [container, panel, rack, machined, corner, screws, module]
628
+ description: "CNC-milled rack-mount module panel with corner registration marks"
629
+
630
+ - id: chassis-panel
631
+ name: Chassis Panel
632
+ class: .chassis-panel
633
+ category: overlays
634
+ file: overlays/chassis-panel.md
635
+ tags: [container, chassis, panel, section, header, device]
636
+ description: "Removable device chassis section with header and LED cluster"
637
+
638
+ - id: plastic-card
639
+ name: Plastic Card
640
+ class: .plastic-card
641
+ category: overlays
642
+ file: overlays/plastic-card.md
643
+ tags: [container, card, plastic, memory, cf, id, polycarbonate]
644
+ description: "Credit-card-sized polycarbonate component with glossy catch-light"
645
+
646
+ - id: device-bezel
647
+ name: Device Bezel
648
+ class: .device-bezel
649
+ category: overlays
650
+ file: overlays/device-bezel.md
651
+ tags: [container, bezel, frame, device, display, ipod, gameboy]
652
+ description: "Display surround frame with stepped profile and double border"
653
+
654
+ - id: dialog
655
+ name: Dialog
656
+ class: .phone-dialog
657
+ category: overlays
658
+ file: overlays/dialog.md
659
+ tags: [overlay, dialog, modal, phone, confirmation, prompt]
660
+ description: "Phone OS confirmation dialog with title, body, and action buttons"
661
+
662
+ - id: toast
663
+ name: Toast
664
+ class: .toast
665
+ category: overlays
666
+ file: overlays/toast.md
667
+ tags: [overlay, toast, notification, banner, sms, transient]
668
+ description: "Transient notification banner with slide-down animation"
669
+
670
+ - id: focus-brackets
671
+ name: Focus Brackets
672
+ class: .focus-box
673
+ category: overlays
674
+ file: overlays/focus-brackets.md
675
+ tags: [overlay, focus, brackets, af, camera, face, eye, autofocus]
676
+ description: "Camera AF overlay brackets — acquiring/locked states with face/eye labels"
677
+
678
+ - id: grid-overlay
679
+ name: Grid Overlay
680
+ class: .grid-overlay-demo
681
+ category: overlays
682
+ file: overlays/grid-overlay.md
683
+ tags: [overlay, grid, rule-of-thirds, crosshair, viewfinder, composition]
684
+ description: "Camera viewfinder rule-of-thirds grid with center crosshair dot"
685
+
686
+ - id: tooltip
687
+ name: Tooltip
688
+ class: .tooltip
689
+ category: overlays
690
+ file: overlays/tooltip.md
691
+ tags: [overlay, tooltip, hud, callout, info, popup]
692
+ description: "HUD callout tooltip with triangular tail pointer"
693
+
694
+ - id: modal
695
+ name: Modal
696
+ class: .modal-overlay
697
+ category: overlays
698
+ file: overlays/modal.md
699
+ tags: [overlay, modal, fullscreen, backdrop, blur, device-screen]
700
+ description: "Full device screen overlay with frosted backdrop and content panel"
701
+
702
+ - id: popover
703
+ name: Popover
704
+ class: .popover
705
+ category: overlays
706
+ file: overlays/popover.md
707
+ tags: [overlay, popover, info, panel, small, contextual]
708
+ description: "Small contextual information panel"
709
+
710
+ # ── J. Indicators ──
711
+ - id: status-chips
712
+ name: Status Chips
713
+ class: .status-chip
714
+ category: indicators
715
+ file: indicators/status-chips.md
716
+ tags: [indicator, chip, status, label, panel, connected, rec]
717
+ description: "Labeled panel indicator lights — read-only system state"
718
+
719
+ - id: chips
720
+ name: Selectable Chips
721
+ class: .chip
722
+ category: indicators
723
+ file: indicators/chips.md
724
+ tags: [indicator, chip, selectable, tag, filter, pill, dot]
725
+ description: "Interactive selectable tags with colored dot indicators"
726
+
727
+ - id: badges
728
+ name: Badges
729
+ class: .badge
730
+ category: indicators
731
+ file: indicators/badges.md
732
+ tags: [indicator, badge, pill, label, blue, green, red, amber]
733
+ description: "Colored status pills — broadcast button cap aesthetic"
734
+
735
+ - id: led-dots
736
+ name: LED Dots
737
+ class: .led-dot
738
+ category: indicators
739
+ file: indicators/led-dots.md
740
+ tags: [indicator, led, dot, light, green, red, blue, amber, off]
741
+ description: "Panel-mounted LED indicator lights — 5 color states"
742
+
743
+ - id: mode-badge
744
+ name: Mode Badge
745
+ class: .mode-badge
746
+ category: indicators
747
+ file: indicators/mode-badge.md
748
+ tags: [indicator, mode, badge, camera, letter, m-a-s-p]
749
+ description: "Camera mode indicator — large letter with detail label"
750
+
751
+ - id: profile-badge
752
+ name: Profile Badge
753
+ class: .pp-badge
754
+ category: indicators
755
+ file: indicators/profile-badge.md
756
+ tags: [indicator, profile, badge, picture, sony, pp, s-log]
757
+ description: "Sony picture profile compact key-value indicator"
758
+
759
+ - id: spinners
760
+ name: Spinners
761
+ class: .spinner
762
+ category: indicators
763
+ file: indicators/spinners.md
764
+ tags: [indicator, spinner, loading, cd, ring, rotating]
765
+ description: "Loading spinners — ring spinner and CD disc spinner"
766
+
767
+ - id: skeleton
768
+ name: Skeleton Loading
769
+ class: .skeleton-wrap
770
+ category: indicators
771
+ file: indicators/skeleton.md
772
+ tags: [indicator, skeleton, loading, boot, placeholder, pulse]
773
+ description: "Boot sequence loading bars with pulsing animation"
774
+
775
+ - id: accordion
776
+ name: Accordion
777
+ class: .accordion
778
+ category: indicators
779
+ file: indicators/accordion.md
780
+ tags: [indicator, accordion, expand, collapse, fold, settings, menu]
781
+ description: "Vertically stacking fold mechanism for nested content"
782
+
783
+ - id: transport-controls
784
+ name: Transport Controls
785
+ class: .transport
786
+ category: indicators
787
+ file: indicators/transport-controls.md
788
+ tags: [indicator, transport, play, pause, rewind, forward, skip, media]
789
+ description: "Media player transport bar — play/pause/skip/rewind buttons"
790
+
791
+ # ── K. Data ──
792
+ - id: data-table
793
+ name: Data Table
794
+ class: .data-table
795
+ category: data
796
+ file: data/data-table.md
797
+ tags: [data, table, diagnostic, readout, grid, monospace]
798
+ description: "Diagnostic readout grid with monospace data and hover highlighting"
799
+
800
+ - id: media-grid
801
+ name: Media Grid
802
+ class: .media-grid
803
+ category: data
804
+ file: data/media-grid.md
805
+ tags: [data, grid, media, thumbnail, proof-sheet, photo, contact]
806
+ description: "Photographic contact sheet — selectable thumbnail grid"
807
+
808
+ - id: film-strip
809
+ name: Film Strip
810
+ class: .film-strip
811
+ category: data
812
+ file: data/film-strip.md
813
+ tags: [data, film, strip, horizontal, sprocket, 35mm, frame]
814
+ description: "Horizontal film strip with sprocket hole borders"
815
+
816
+ - id: assembled-panel
817
+ name: Assembled Panel
818
+ class: .panel
819
+ category: data
820
+ file: data/assembled-panel.md
821
+ tags: [data, composition, assembled, panel, multi-component, demo]
822
+ description: "Multi-component composition panel — components working together"