ariadne_view_components 0.0.55-x86_64-darwin → 0.0.57-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +2 -0
  3. data/app/assets/builds/ariadne_view_components.css +16 -4
  4. data/app/assets/javascripts/ariadne_view_components.js +8 -0
  5. data/app/assets/javascripts/ariadne_view_components.js.map +1 -0
  6. data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
  7. data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +22 -0
  8. data/app/assets/javascripts/components/ariadne/ariadne.d.ts +2 -0
  9. data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +4 -0
  10. data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +1 -0
  11. data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +4 -0
  12. data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +39 -0
  13. data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
  14. data/app/assets/javascripts/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts +6 -0
  15. data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +9 -0
  16. data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
  17. data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +48 -0
  18. data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +1 -0
  19. data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +9 -0
  20. data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +1 -0
  21. data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
  22. data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +24 -0
  23. data/app/components/ariadne/options_controller/options_controller.js +6 -3
  24. data/app/components/ariadne/options_controller/options_controller.ts +9 -4
  25. data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +1 -1
  26. data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +1 -1
  27. data/lib/ariadne/view_components/version.rb +1 -1
  28. metadata +21 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89421d356a2967a6000c93d9c8541f38715f091841078a67761c43bbb8cafcbc
4
- data.tar.gz: cd5cfe48f856107a7fc2e22a0ede22c4ecdf62e46adbde4ba6e644e7be2ca1c1
3
+ metadata.gz: 1caa55be0c04e7b461dacd3538bbda9d3a8abc3453cc11f97107c82eba00ae6a
4
+ data.tar.gz: 461712aa9bd0b8e92a014b612b1112a6f506e385e0b010794fe83d0e2d29213d
5
5
  SHA512:
6
- metadata.gz: 93a897e170c851c211689e6a0c401911d3d273a1264f288775ef31592ce7f0a742e97dd1812da2dd683c19bd1c19fc9e93bdf376d1508cc9750984d7381874af
7
- data.tar.gz: 8b6d3f4e31a53beb68ef41f849acc9669fdd212ed2391f6b7065c6ec0ed3bf5b847dab4c0ba20e46cc92bd341feefc6a90b4d51e2f08d613325c2b226ba2d2ff
6
+ metadata.gz: 41fec2cc6a8a85ae85f2ab9ff7595e02106befabd453a1681b2b82eda71ee4e9941474502f6229433fb100d430cf5d6b2af64cd66f9019566ec7a50147a765c6
7
+ data.tar.gz: e8ffa531648c944f3ce9fd534754c6bb14edd0c7d954e401ddab49094cc372f2842d39ea80bb7837b5d317516e47834e0a95d1dadf9b6890c8a740ded6ed6415
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [v0.0.55] - 14-07-2023
2
+ null
1
3
  ## [v0.0.54] - 13-07-2023
2
4
  null
3
5
  ## [v0.0.53] - 11-07-2023
@@ -1,5 +1,5 @@
1
1
  /*
2
- ! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
2
+ ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
3
3
  */
4
4
 
5
5
  /*
@@ -191,6 +191,10 @@ select,
191
191
  textarea {
192
192
  font-family: inherit;
193
193
  /* 1 */
194
+ font-feature-settings: inherit;
195
+ /* 1 */
196
+ font-variation-settings: inherit;
197
+ /* 1 */
194
198
  font-size: 100%;
195
199
  /* 1 */
196
200
  font-weight: inherit;
@@ -341,6 +345,14 @@ menu {
341
345
  padding: 0;
342
346
  }
343
347
 
348
+ /*
349
+ Reset default styling for dialogs.
350
+ */
351
+
352
+ dialog {
353
+ padding: 0;
354
+ }
355
+
344
356
  /*
345
357
  Prevent resizing textareas horizontally by default.
346
358
  */
@@ -422,7 +434,7 @@ video {
422
434
  display: none;
423
435
  }
424
436
 
425
- [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
437
+ [type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
426
438
  -webkit-appearance: none;
427
439
  -moz-appearance: none;
428
440
  appearance: none;
@@ -439,7 +451,7 @@ video {
439
451
  --tw-shadow: 0 0 #0000;
440
452
  }
441
453
 
442
- [type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
454
+ [type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
443
455
  outline: 2px solid transparent;
444
456
  outline-offset: 2px;
445
457
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
@@ -485,7 +497,7 @@ select {
485
497
  print-color-adjust: exact;
486
498
  }
487
499
 
488
- [multiple] {
500
+ [multiple],[size]:where(select:not([size="1"])) {
489
501
  background-image: initial;
490
502
  background-position: initial;
491
503
  background-repeat: unset;