ariadne_view_components 0.0.54-x86_64-linux → 0.0.57-x86_64-linux
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 +4 -0
- data/app/assets/builds/ariadne_view_components.css +16 -4
- data/app/assets/javascripts/ariadne_view_components.js +1 -1
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/components/ariadne/accumulator_controller/accumulator_controller.js +2 -2
- data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +2 -2
- data/app/components/ariadne/options_controller/options_controller.js +7 -4
- data/app/components/ariadne/options_controller/options_controller.ts +10 -5
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +1 -1
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +1 -1
- data/app/components/ariadne/string_match_controller/string_match_controller.js +2 -2
- data/app/components/ariadne/string_match_controller/string_match_controller.ts +2 -2
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +2 -2
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +2 -2
- data/app/lib/ariadne/form_builder.rb +6 -0
- data/lib/ariadne/view_components/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2e313e06d98e88eb0e837b4873d6348913bc06132ed0b4a663c09c073359b76
|
4
|
+
data.tar.gz: 87b9c1c6d09050d0b76d0c24577418b44c57a3a6e6678ae56cb5f456ee70d51d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 661e696f4f28fb69c18e7e75ec77a081f1e1de60ab4840ea22435c9cafc986c46a86bcd825ead423b03184242efe13ba53e2ccf7ee7b9b52af3e423530a41bfe
|
7
|
+
data.tar.gz: be11900f78fcf4e4cacf0d4140ea2dac5358d6d1f8eea7abeb5f9505f6b516d6a959650759d1e90c571fa38f896e5178ab13576b3f638d80eb92c19b691d4698
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
! tailwindcss v3.3.
|
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;
|