ariadne_view_components 0.0.3 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/app/assets/builds/ariadne_view_components.css +1874 -0
  4. data/app/assets/config/manifest.js +2 -0
  5. data/app/assets/javascripts/ariadne.d.ts +1 -0
  6. data/app/assets/javascripts/ariadne_view_components.js +1 -1
  7. data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
  8. data/app/assets/javascripts/clipboard-copy-component.d.ts +4 -0
  9. data/app/assets/javascripts/slideover-component.d.ts +9 -0
  10. data/app/assets/javascripts/time_ago_component.d.ts +1 -0
  11. data/app/assets/javascripts/tooltip-component.d.ts +24 -0
  12. data/app/assets/stylesheets/application.ariadne_view_components.css +5 -0
  13. data/app/assets/stylesheets/tooltip-component.css +37 -0
  14. data/app/components/ariadne/ariadne.d.ts +1 -0
  15. data/app/components/ariadne/ariadne.js +9 -0
  16. data/app/components/ariadne/ariadne.ts +8 -9
  17. data/app/components/ariadne/base_button.rb +10 -8
  18. data/app/components/ariadne/blankslate_component.html.erb +26 -0
  19. data/app/components/ariadne/blankslate_component.rb +151 -0
  20. data/app/components/ariadne/body_component.rb +30 -0
  21. data/app/components/ariadne/button_component.html.erb +1 -1
  22. data/app/components/ariadne/button_component.rb +9 -11
  23. data/app/components/ariadne/clipboard-copy-component.d.ts +4 -0
  24. data/app/components/ariadne/clipboard-copy-component.js +18 -0
  25. data/app/components/ariadne/{clipboard_copy_component.ts → clipboard-copy-component.ts} +0 -0
  26. data/app/components/ariadne/clipboard_copy_component.d.ts +4 -0
  27. data/app/components/ariadne/clipboard_copy_component.html.erb +2 -2
  28. data/app/components/ariadne/clipboard_copy_component.js +18 -0
  29. data/app/components/ariadne/clipboard_copy_component.rb +45 -5
  30. data/app/components/ariadne/comment_component.html.erb +25 -0
  31. data/app/components/ariadne/comment_component.rb +45 -0
  32. data/app/components/ariadne/component.rb +6 -1
  33. data/app/components/ariadne/container_component.html.erb +3 -0
  34. data/app/components/ariadne/container_component.rb +25 -0
  35. data/app/components/ariadne/flash_component.rb +9 -9
  36. data/app/components/ariadne/flex_component.rb +51 -0
  37. data/app/components/ariadne/footer_component.html.erb +7 -0
  38. data/app/components/ariadne/footer_component.rb +23 -0
  39. data/app/components/ariadne/grid_component.html.erb +26 -0
  40. data/app/components/ariadne/grid_component.rb +66 -0
  41. data/app/components/ariadne/header_component.html.erb +29 -0
  42. data/app/components/ariadne/header_component.rb +114 -0
  43. data/app/components/ariadne/heading_component.rb +3 -3
  44. data/app/components/ariadne/heroicon_component.html.erb +2 -5
  45. data/app/components/ariadne/heroicon_component.rb +20 -7
  46. data/app/components/ariadne/image_component.rb +5 -3
  47. data/app/components/ariadne/inline_flex_component.html.erb +5 -0
  48. data/app/components/ariadne/inline_flex_component.rb +65 -0
  49. data/app/components/ariadne/link_component.rb +65 -0
  50. data/app/components/ariadne/list_component.html.erb +15 -0
  51. data/app/components/ariadne/list_component.rb +67 -0
  52. data/app/components/ariadne/main_component.rb +32 -0
  53. data/app/components/ariadne/pill_component.html.erb +3 -0
  54. data/app/components/ariadne/pill_component.rb +30 -0
  55. data/app/components/ariadne/slideover-component.d.ts +9 -0
  56. data/app/components/ariadne/slideover-component.js +20 -0
  57. data/app/components/ariadne/slideover-component.ts +26 -0
  58. data/app/components/ariadne/slideover_component.d.ts +9 -0
  59. data/app/components/ariadne/slideover_component.html.erb +11 -0
  60. data/app/components/ariadne/slideover_component.js +19 -0
  61. data/app/components/ariadne/slideover_component.rb +81 -0
  62. data/app/components/ariadne/time_ago_component.d.ts +1 -0
  63. data/app/components/ariadne/time_ago_component.js +1 -0
  64. data/app/components/ariadne/time_ago_component.rb +56 -0
  65. data/app/components/ariadne/time_ago_component.ts +1 -0
  66. data/app/components/ariadne/timeline_component.html.erb +19 -0
  67. data/app/components/ariadne/timeline_component.rb +34 -0
  68. data/app/components/ariadne/tooltip-component.d.ts +24 -0
  69. data/app/components/ariadne/tooltip-component.js +42 -0
  70. data/app/components/ariadne/tooltip-component.ts +57 -0
  71. data/app/components/ariadne/tooltip_component.html.erb +4 -0
  72. data/app/components/ariadne/tooltip_component.rb +34 -31
  73. data/app/lib/ariadne/action_view_extensions/form_helper.rb +23 -0
  74. data/app/lib/ariadne/form_builder.rb +71 -0
  75. data/lib/ariadne/classify.rb +4 -90
  76. data/lib/ariadne/view_components/engine.rb +8 -0
  77. data/lib/ariadne/view_components/version.rb +1 -1
  78. data/lib/ariadne/view_components.rb +31 -29
  79. data/lib/rubocop/cop/ariadne/ariadne_heroicon.rb +2 -2
  80. data/lib/tasks/docs.rake +52 -58
  81. data/static/arguments.yml +290 -17
  82. data/static/audited_at.json +18 -0
  83. data/static/classes.yml +189 -1
  84. data/static/constants.json +173 -30
  85. data/static/statuses.json +18 -0
  86. metadata +77 -9
  87. data/app/assets/stylesheets/application.tailwind.css +0 -3
  88. data/lib/tasks/tailwind.rake +0 -31
data/static/arguments.yml CHANGED
@@ -12,8 +12,34 @@
12
12
  description: One of `:button`, `:reset`, or `:submit`.
13
13
  - name: size
14
14
  type: Symbol
15
- default: "`:m`"
16
- description: One of `:l`, `:m`, `:s`, `:xl`, or `:xs`.
15
+ default: "`:md`"
16
+ description: One of `:lg`, `:md`, `:sm`, `:xl`, or `:xs`.
17
+ - name: classes
18
+ type: String
19
+ default: '`""`'
20
+ description: "[Classes and attributes](/classes-attributes)"
21
+ - name: attributes
22
+ type: Hash
23
+ default: "`{}`"
24
+ description: "[Classes and attributes](/classes-attributes)"
25
+ - component: Blankslate
26
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/blankslate_component.rb
27
+ parameters:
28
+ - name: tag
29
+ type: Symbol, String
30
+ default: "`:div`"
31
+ description: The rendered tag name
32
+ - name: classes
33
+ type: String
34
+ default: '`""`'
35
+ description: "[Classes and attributes](/classes-attributes)"
36
+ - name: attributes
37
+ type: Hash
38
+ default: "`{}`"
39
+ description: "[Classes and attributes](/classes-attributes)"
40
+ - component: Body
41
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/body_component.rb
42
+ parameters:
17
43
  - name: classes
18
44
  type: String
19
45
  default: '`""`'
@@ -29,6 +55,10 @@
29
55
  type: Symbol
30
56
  default: "`:button`"
31
57
  description: One of `:a`, `:button`, or `:summary`.
58
+ - name: type
59
+ type: Symbol
60
+ default: "`:button`"
61
+ description: One of `:button`, `:reset`, or `:submit`.
32
62
  - name: scheme
33
63
  type: Symbol
34
64
  default: "`:default`"
@@ -36,10 +66,10 @@
36
66
  - name: size
37
67
  type: Symbol
38
68
  default: "`BaseButton::DEFAULT_SIZE`"
39
- description: One of `:l`, `:m`, `:s`, `:xl`, or `:xs`.
69
+ description: One of `:lg`, `:md`, `:sm`, `:xl`, or `:xs`.
40
70
  - name: type
41
71
  type: Symbol
42
- default: N/A
72
+ default: "`:button`"
43
73
  description: One of `:button`, `:reset`, or `:submit`.
44
74
  - name: classes
45
75
  type: String
@@ -64,6 +94,10 @@
64
94
  type: String
65
95
  default: '`""`'
66
96
  description: Text to copy into the users clipboard when they click the component.
97
+ - name: for_id
98
+ type: String
99
+ default: "`nil`"
100
+ description: If `value` is not provided, the element with this id will be copied.
67
101
  - name: aria_label
68
102
  type: String
69
103
  default: '`""`'
@@ -73,6 +107,32 @@
73
107
  type: Hash
74
108
  default: "`{}`"
75
109
  description: "[Classes and attributes](/classes-attributes)"
110
+ - component: Comment
111
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/comment_component.rb
112
+ parameters:
113
+ - name: action
114
+ type: String
115
+ default: N/A
116
+ description: The action to take when the form is submitted.
117
+ - name: classes
118
+ type: String
119
+ default: '`""`'
120
+ description: "[Classes and attributes](/classes-attributes)"
121
+ - name: attributes
122
+ type: Hash
123
+ default: "`{}`"
124
+ description: "[Classes and attributes](/classes-attributes)"
125
+ - component: Container
126
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/container_component.rb
127
+ parameters:
128
+ - name: classes
129
+ type: String
130
+ default: '`""`'
131
+ description: "[Classes and attributes](/classes-attributes)"
132
+ - name: attributes
133
+ type: Hash
134
+ default: "`{}`"
135
+ description: "[Classes and attributes](/classes-attributes)"
76
136
  - component: Counter
77
137
  source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/counter_component.rb
78
138
  parameters:
@@ -137,6 +197,58 @@
137
197
  type: Hash
138
198
  default: "`{}`"
139
199
  description: "[Classes and attributes](/classes-attributes)"
200
+ - component: Flex
201
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/flex_component.rb
202
+ parameters:
203
+ - name: tag
204
+ type: Symbol, String
205
+ default: "`:div`"
206
+ description: The rendered tag name.
207
+ - name: type
208
+ type: Symbol
209
+ default: N/A
210
+ description: One of `:column`, `:column_reverse`, `:row`, or `:row_reverse`.
211
+ - name: classes
212
+ type: String
213
+ default: '`""`'
214
+ description: "[Classes and attributes](/classes-attributes)"
215
+ - name: attributes
216
+ type: Hash
217
+ default: "`{}`"
218
+ description: "[Classes and attributes](/classes-attributes)"
219
+ - component: Footer
220
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/footer_component.rb
221
+ parameters:
222
+ - name: classes
223
+ type: String
224
+ default: '`""`'
225
+ description: "[Classes and attributes](/classes-attributes)"
226
+ - name: attributes
227
+ type: Hash
228
+ default: "`{}`"
229
+ description: "[Classes and attributes](/classes-attributes)"
230
+ - component: Grid
231
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/grid_component.rb
232
+ parameters:
233
+ - name: classes
234
+ type: String
235
+ default: '`""`'
236
+ description: "[Classes and attributes](/classes-attributes)"
237
+ - name: attributes
238
+ type: Hash
239
+ default: "`{}`"
240
+ description: "[Classes and attributes](/classes-attributes)"
241
+ - component: Header
242
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/header_component.rb
243
+ parameters:
244
+ - name: classes
245
+ type: String
246
+ default: '`""`'
247
+ description: "[Classes and attributes](/classes-attributes)"
248
+ - name: attributes
249
+ type: Hash
250
+ default: "`{}`"
251
+ description: "[Classes and attributes](/classes-attributes)"
140
252
  - component: Heading
141
253
  source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/heading_component.rb
142
254
  parameters:
@@ -173,12 +285,20 @@
173
285
  description: One of `outline` and `solid`.
174
286
  - name: size
175
287
  type: Symbol
176
- default: "`:small`"
177
- description: One of `:small` (`16`) and `:medium` (`24`).
288
+ default: "`:sm`"
289
+ description: One of `:sm` (`16`), `:md` (`24`), or `:lg` (`128`).
178
290
  - name: attributes
179
291
  type: Hash
180
292
  default: "`{}`"
181
293
  description: "[Classes and attributes](/classes-attributes)"
294
+ - name: text_classes
295
+ type: String
296
+ default: '`""`'
297
+ description: "[Classes and attributes](/classes-attributes)"
298
+ - name: text_attributes
299
+ type: Hash
300
+ default: "`{}`"
301
+ description: "[Classes and attributes](/classes-attributes)"
182
302
  - component: Image
183
303
  source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/image_component.rb
184
304
  parameters:
@@ -186,10 +306,6 @@
186
306
  type: Symbol, String
187
307
  default: "`:img`"
188
308
  description: The rendered tag name
189
- - name: classes
190
- type: String
191
- default: '`""`'
192
- description: "[Classes and attributes](/classes-attributes)"
193
309
  - name: src
194
310
  type: String
195
311
  default: N/A
@@ -202,6 +318,120 @@
202
318
  type: Boolean
203
319
  default: "`false`"
204
320
  description: Whether or not to lazily load the image.
321
+ - name: classes
322
+ type: String
323
+ default: '`""`'
324
+ description: "[Classes and attributes](/classes-attributes)"
325
+ - name: attributes
326
+ type: Hash
327
+ default: "`{}`"
328
+ description: "[Classes and attributes](/classes-attributes)"
329
+ - component: InlineFlex
330
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/inline_flex_component.rb
331
+ parameters:
332
+ - name: tag
333
+ type: Symbol, String
334
+ default: "`:span`"
335
+ description: The rendered tag name
336
+ - name: classes
337
+ type: String
338
+ default: '`""`'
339
+ description: "[Classes and attributes](/classes-attributes)"
340
+ - name: attributes
341
+ type: Hash
342
+ default: "`{}`"
343
+ description: "[Classes and attributes](/classes-attributes)"
344
+ - component: Link
345
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/link_component.rb
346
+ parameters:
347
+ - name: tag
348
+ type: String
349
+ default: "`:a`"
350
+ description: One of `:a` and `:span`.
351
+ - name: href
352
+ type: String
353
+ default: N/A
354
+ description: URL to be used for the link.
355
+ - name: actionable
356
+ type: Boolean
357
+ default: "`false`"
358
+ description: If true, adds additional classes to the link to make it more aware.
359
+ - name: classes
360
+ type: String
361
+ default: '`""`'
362
+ description: "[Classes and attributes](/classes-attributes)"
363
+ - name: attributes
364
+ type: Hash
365
+ default: "`{}`"
366
+ description: "[Classes and attributes](/classes-attributes)"
367
+ - component: List
368
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/list_component.rb
369
+ parameters:
370
+ - name: classes
371
+ type: String
372
+ default: '`""`'
373
+ description: "[Classes and attributes](/classes-attributes)"
374
+ - name: attributes
375
+ type: Hash
376
+ default: "`{}`"
377
+ description: "[Classes and attributes](/classes-attributes)"
378
+ - component: Main
379
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/main_component.rb
380
+ parameters:
381
+ - name: classes
382
+ type: String
383
+ default: '`""`'
384
+ description: "[Classes and attributes](/classes-attributes)"
385
+ - name: attributes
386
+ type: Hash
387
+ default: "`{}`"
388
+ description: "[Classes and attributes](/classes-attributes)"
389
+ - component: Pill
390
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/pill_component.rb
391
+ parameters:
392
+ - name: tag
393
+ type: Symbol, String
394
+ default: "`:span`"
395
+ description: The rendered tag name.
396
+ - name: color
397
+ type: String
398
+ default: N/A
399
+ description: The hex color of the pill.
400
+ - name: classes
401
+ type: String
402
+ default: '`""`'
403
+ description: "[Classes and attributes](/classes-attributes)"
404
+ - name: attributes
405
+ type: Hash
406
+ default: "`{}`"
407
+ description: "[Classes and attributes](/classes-attributes)"
408
+ - component: Slideover
409
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/slideover_component.rb
410
+ parameters:
411
+ - name: tag
412
+ type: Symbol, String
413
+ default: "`:div`"
414
+ description: The rendered tag name.
415
+ - name: direction
416
+ type: Symbol
417
+ default: N/A
418
+ description: One of `:xl` and `:yd`.
419
+ - name: form_id
420
+ type: String
421
+ default: "`nil`"
422
+ description: The ID of any <form> tag to submit when the button is clicked.
423
+ - name: open_text
424
+ type: String
425
+ default: '`"Open"`'
426
+ description: The text to use to open the slideover.
427
+ - name: close_text
428
+ type: String
429
+ default: '`"Close"`'
430
+ description: The text to use to close the slideover.
431
+ - name: classes
432
+ type: String
433
+ default: '`""`'
434
+ description: "[Classes and attributes](/classes-attributes)"
205
435
  - name: attributes
206
436
  type: Hash
207
437
  default: "`{}`"
@@ -221,26 +451,69 @@
221
451
  type: Hash
222
452
  default: "`{}`"
223
453
  description: "[Classes and attributes](/classes-attributes)"
454
+ - component: TimeAgo
455
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/time_ago_component.rb
456
+ parameters:
457
+ - name: tag
458
+ type: Symbol, String
459
+ default: "`:time-ago`"
460
+ description: The rendered tag name.
461
+ - name: time
462
+ type: Time
463
+ default: N/A
464
+ description: The time to be formatted
465
+ - name: micro
466
+ type: Boolean
467
+ default: "`false`"
468
+ description: If true then the text will be formatted in "micro" mode, using as
469
+ few characters as possible
470
+ - name: classes
471
+ type: String
472
+ default: '`""`'
473
+ description: "<%= link_to_classes_docs %>"
474
+ - name: attributes
475
+ type: Hash
476
+ default: "`{}`"
477
+ description: "[Classes and attributes](/classes-attributes)"
478
+ - component: Timeline
479
+ source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/timeline_component.rb
480
+ parameters:
481
+ - name: tag
482
+ type: Symbol, String
483
+ default: "`:div`"
484
+ description: The rendered tag name
485
+ - name: classes
486
+ type: String
487
+ default: '`""`'
488
+ description: "[Classes and attributes](/classes-attributes)"
489
+ - name: attributes
490
+ type: Hash
491
+ default: "`{}`"
492
+ description: "[Classes and attributes](/classes-attributes)"
224
493
  - component: Tooltip
225
494
  source: https://github.com/yettoapp/ariadne/ruby/view_components/tree/main/app/components/ariadne/tooltip_component.rb
226
495
  parameters:
227
496
  - name: tag
228
497
  type: Symbol, String
229
- default: '`:"tool-tip"`'
498
+ default: "`:tooltip`"
230
499
  description: The rendered tag name
231
- - name: type
232
- type: Symbol
233
- default: "`:description`"
234
- description: One of `:description` and `:label`.
500
+ - name: for_id
501
+ type: String
502
+ default: N/A
503
+ description: The ID of the element that the tooltip should be attached to.
235
504
  - name: text
236
505
  type: String
237
506
  default: N/A
238
507
  description: The text content of the tooltip. This should be brief and no longer
239
508
  than a sentence.
509
+ - name: type
510
+ type: Symbol
511
+ default: "`:description`"
512
+ description: One of `:description` and `:label`.
240
513
  - name: direction
241
514
  type: Symbol
242
- default: "`:s`"
243
- description: One of `:e`, `:n`, `:ne`, `:nw`, `:s`, `:se`, `:sw`, or `:w`.
515
+ default: "`:top`"
516
+ description: One of `:bottom`, `:left`, `:right`, or `:top`.
244
517
  - name: classes
245
518
  type: String
246
519
  default: '`""`'
@@ -1,14 +1,32 @@
1
1
  {
2
2
  "Ariadne::BaseButton": "",
3
3
  "Ariadne::BaseComponent": "",
4
+ "Ariadne::BlankslateComponent": "",
5
+ "Ariadne::BodyComponent": "",
4
6
  "Ariadne::ButtonComponent": "",
5
7
  "Ariadne::ClipboardCopyComponent": "",
8
+ "Ariadne::CommentComponent": "",
9
+ "Ariadne::ContainerComponent": "",
6
10
  "Ariadne::Content": "",
7
11
  "Ariadne::CounterComponent": "",
8
12
  "Ariadne::FlashComponent": "",
13
+ "Ariadne::FlexComponent": "",
14
+ "Ariadne::FooterComponent": "",
15
+ "Ariadne::GridComponent": "",
16
+ "Ariadne::GridComponent::Item": "",
17
+ "Ariadne::HeaderComponent": "",
9
18
  "Ariadne::HeadingComponent": "",
10
19
  "Ariadne::HeroiconComponent": "",
11
20
  "Ariadne::ImageComponent": "",
21
+ "Ariadne::InlineFlexComponent": "",
22
+ "Ariadne::LinkComponent": "",
23
+ "Ariadne::ListComponent": "",
24
+ "Ariadne::ListComponent::Item": "",
25
+ "Ariadne::MainComponent": "",
26
+ "Ariadne::PillComponent": "",
27
+ "Ariadne::SlideoverComponent": "",
12
28
  "Ariadne::Text": "",
29
+ "Ariadne::TimeAgoComponent": "",
30
+ "Ariadne::TimelineComponent": "",
13
31
  "Ariadne::TooltipComponent": ""
14
32
  }
data/static/classes.yml CHANGED
@@ -1,23 +1,77 @@
1
1
  ---
2
+ - ".-"
3
+ - ".-m-0.5"
4
+ - ".-mb-8"
5
+ - ".-mr-px"
2
6
  - ".-mx-1.5"
3
7
  - ".-mx-2"
4
8
  - ".-my-1.5"
9
+ - ".a"
10
+ - ".absolute"
11
+ - ".all"
12
+ - ".alt:"
13
+ - ".and"
14
+ - ".antialiased"
15
+ - ".as"
16
+ - ".attributes:"
17
+ - ".bell"
18
+ - ".bg-billy-purple"
5
19
  - ".bg-blue-50"
20
+ - ".bg-button-bg-color"
21
+ - ".bg-filter-panel"
6
22
  - ".bg-gray-600"
7
23
  - ".bg-green-50"
24
+ - ".bg-purple-50"
8
25
  - ".bg-red-50"
26
+ - ".bg-slate-900"
27
+ - ".bg-state-closed"
28
+ - ".bg-state-open"
9
29
  - ".bg-white"
10
30
  - ".bg-yellow-50"
31
+ - ".billion:"
32
+ - ".block"
33
+ - ".bold"
34
+ - ".bold-button-0"
11
35
  - ".border"
36
+ - ".border-b"
37
+ - ".border-billy-purple"
38
+ - ".border-black"
12
39
  - ".border-blue-300"
13
40
  - ".border-gray-300"
14
41
  - ".border-green-300"
42
+ - ".border-purple-300"
15
43
  - ".border-red-300"
44
+ - ".border-state-closed"
45
+ - ".border-state-open"
16
46
  - ".border-transparent"
17
47
  - ".border-yellow-300"
48
+ - ".button-with-tooltip"
49
+ - ".check"
50
+ - ".chevron-down"
51
+ - ".classes:"
52
+ - ".clipboard"
53
+ - ".clipboard-copy-component"
54
+ - ".clock"
18
55
  - ".color-fg-success"
56
+ - ".cursor-pointer"
57
+ - ".decoration-double"
58
+ - ".divide-gray-200"
59
+ - ".divide-gray-300"
60
+ - ".divide-y"
61
+ - ".dots-horizontal"
62
+ - ".duration-500"
63
+ - ".fill-billy-purple"
64
+ - ".fill-state-closed"
65
+ - ".fill-state-open"
19
66
  - ".flex"
67
+ - ".flex-1"
68
+ - ".flex-auto"
69
+ - ".flex-col"
20
70
  - ".flex-shrink-0"
71
+ - ".flow-root"
72
+ - ".focus-visible:outline-2"
73
+ - ".focus-visible:outline-offset-2"
74
+ - ".focus:border-indigo-500"
21
75
  - ".focus:outline-none"
22
76
  - ".focus:ring-2"
23
77
  - ".focus:ring-blue-600"
@@ -27,63 +81,197 @@
27
81
  - ".focus:ring-offset-2"
28
82
  - ".focus:ring-offset-blue-50"
29
83
  - ".focus:ring-offset-green-50"
84
+ - ".focus:ring-offset-purple-50"
30
85
  - ".focus:ring-offset-red-50"
31
86
  - ".focus:ring-offset-yellow-50"
87
+ - ".focus:ring-purple-500"
88
+ - ".focus:ring-purple-600"
32
89
  - ".focus:ring-red-600"
33
90
  - ".focus:ring-yellow-600"
34
91
  - ".font-bold"
35
92
  - ".font-extrabold"
36
93
  - ".font-medium"
94
+ - ".font-semibold"
95
+ - ".foo"
96
+ - ".full"
97
+ - ".gap-6"
98
+ - ".grid"
99
+ - ".grid-cols-1"
100
+ - ".group"
101
+ - ".h-10"
102
+ - ".h-full"
103
+ - ".h-screen"
104
+ - ".hidden"
37
105
  - ".hover:bg-blue-100"
106
+ - ".hover:bg-button-hover-color"
107
+ - ".hover:bg-gray-100"
38
108
  - ".hover:bg-gray-50"
39
109
  - ".hover:bg-gray-700"
40
110
  - ".hover:bg-green-100"
111
+ - ".hover:bg-purple-100"
41
112
  - ".hover:bg-red-100"
113
+ - ".hover:bg-slate-100"
42
114
  - ".hover:bg-yellow-100"
115
+ - ".hover:text-button-text-color"
116
+ - ".hover:text-gray-500"
117
+ - ".hover:text-gray-900"
118
+ - ".hover:text-slate-900"
119
+ - ".id:"
120
+ - ".immediately"
121
+ - ".impact"
122
+ - ".information-circle"
123
+ - ".inline-block"
43
124
  - ".inline-flex"
125
+ - ".invisible"
126
+ - ".is"
127
+ - ".items-baseline"
44
128
  - ".items-center"
129
+ - ".justify-between"
130
+ - ".justify-center"
131
+ - ".justify-end"
45
132
  - ".leading-4"
133
+ - ".leading-5"
46
134
  - ".leading-7"
135
+ - ".lg:grid-cols-3"
136
+ - ".lg:px-8"
137
+ - ".lg:py-16"
138
+ - ".link"
139
+ - ".list"
140
+ - ".lock-closed"
47
141
  - ".m-2"
142
+ - ".m:"
143
+ - ".mail"
144
+ - ".max-w-7xl"
145
+ - ".max-w-xs"
146
+ - ".members"
147
+ - ".menu"
148
+ - ".million:"
149
+ - ".min-h-screen"
48
150
  - ".ml-2"
49
151
  - ".ml-3"
50
152
  - ".mt-2"
51
153
  - ".mt-4"
154
+ - ".mt-6"
155
+ - ".mt-8"
156
+ - ".mt-px"
157
+ - ".mx-auto"
158
+ - ".mx-px"
159
+ - ".my-4"
160
+ - ".organization"
161
+ - ".p-0.5"
52
162
  - ".p-1"
53
163
  - ".p-1.5"
54
164
  - ".p-4"
165
+ - ".p-8"
166
+ - ".pb-12"
167
+ - ".pb-2"
168
+ - ".pb-4"
169
+ - ".pencil"
170
+ - ".pl-2"
55
171
  - ".pl-3"
172
+ - ".plus-sm"
173
+ - ".pt-2"
56
174
  - ".pt-5"
175
+ - ".pt-6"
176
+ - ".pt:"
177
+ - ".px-2"
57
178
  - ".px-2.5"
58
179
  - ".px-3"
59
180
  - ".px-4"
60
181
  - ".px-6"
182
+ - ".py-0.5"
183
+ - ".py-1"
61
184
  - ".py-1.5"
185
+ - ".py-12"
62
186
  - ".py-2"
63
187
  - ".py-3"
188
+ - ".py-4"
189
+ - ".py-5"
190
+ - ".question-mark-circle"
191
+ - ".relative"
64
192
  - ".rounded"
193
+ - ".rounded-bl-lg"
65
194
  - ".rounded-full"
195
+ - ".rounded-lg"
66
196
  - ".rounded-m"
67
197
  - ".rounded-md"
198
+ - ".scheme:"
199
+ - ".scroll-smooth"
200
+ - ".search"
201
+ - ".secure"
202
+ - ".shadow"
68
203
  - ".shadow-sm"
204
+ - ".should"
205
+ - ".sm:grid-cols-2"
206
+ - ".sm:mt-0"
207
+ - ".sm:px-6"
69
208
  - ".sm:text-3xl"
70
- - ".sm:truncate"
209
+ - ".sm:text-4xl"
210
+ - ".sm:text-sm"
71
211
  - ".sr-only"
212
+ - ".sticky"
213
+ - ".stroke-billy-purple"
214
+ - ".stroke-state-closed"
215
+ - ".stroke-state-open"
216
+ - ".system"
217
+ - ".take"
218
+ - ".text"
72
219
  - ".text-2xl"
73
220
  - ".text-3xl"
74
221
  - ".text-base"
222
+ - ".text-billy-purple"
223
+ - ".text-black-700"
75
224
  - ".text-blue-500"
76
225
  - ".text-blue-700"
77
226
  - ".text-blue-800"
227
+ - ".text-button-text-color"
228
+ - ".text-center"
229
+ - ".text-gray-500"
78
230
  - ".text-gray-700"
231
+ - ".text-gray-800"
79
232
  - ".text-gray-900"
233
+ - ".text-green-500"
80
234
  - ".text-green-700"
81
235
  - ".text-green-800"
236
+ - ".text-lg"
237
+ - ".text-purple-800"
238
+ - ".text-red-500"
82
239
  - ".text-red-700"
83
240
  - ".text-red-800"
241
+ - ".text-slate-500"
242
+ - ".text-slate-700"
84
243
  - ".text-sm"
244
+ - ".text-state-closed"
245
+ - ".text-state-open"
85
246
  - ".text-white"
247
+ - ".text-xl"
86
248
  - ".text-xs"
249
+ - ".text-yellow-500"
87
250
  - ".text-yellow-600"
88
251
  - ".text-yellow-700"
89
252
  - ".text-yellow-800"
253
+ - ".text:"
254
+ - ".the"
255
+ - ".to"
256
+ - ".tooltip"
257
+ - ".tooltip-arrow"
258
+ - ".tooltip-component"
259
+ - ".top-0"
260
+ - ".tracking-tight"
261
+ - ".transition"
262
+ - ".trash"
263
+ - ".trigger"
264
+ - ".type:"
265
+ - ".underline"
266
+ - ".up"
267
+ - ".vault"
268
+ - ".w-0"
269
+ - ".w-auto"
270
+ - ".w-full"
271
+ - ".whitespace-nowrap"
272
+ - ".width"
273
+ - ".will"
274
+ - ".x"
275
+ - ".z-10"
276
+ - ".z-50"
277
+ - ".z-max"