ariadne_view_components 0.0.50-aarch64-linux → 0.0.51-aarch64-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 +2 -0
- data/app/assets/builds/ariadne_view_components.css +21 -0
- data/app/assets/javascripts/ariadne_view_components.js +1 -1
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +1 -1
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +1 -0
- data/app/components/ariadne/action_card_component.html.erb +4 -2
- data/app/components/ariadne/action_card_component.rb +52 -9
- data/app/components/ariadne/combobox_component.rb +1 -1
- data/app/components/ariadne/options_controller/options_controller.d.ts +1 -1
- data/app/components/ariadne/options_controller/options_controller.js +13 -23
- data/app/components/ariadne/options_controller/options_controller.ts +12 -24
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +1 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +20 -0
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +23 -0
- data/lib/ariadne/view_components/version.rb +1 -1
- data/static/constants.json +18 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e848cc0cc33862c09b1118d711560e3d8d00c209370a782b4559d28038de6bb2
|
4
|
+
data.tar.gz: ffa2913e8589983ffe1e625df3a27f994afaf6b478fd3bbf67da047f7c5799fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a57ae79a7178db31fe03030ae45192ee39ad2dc86bc4d1f2e851ab303ecaa26bd1a4b7426476857c7a40ffa2551e23a9e4b2311494b256d12133592afa3af6e
|
7
|
+
data.tar.gz: beebde8c253665858b6592f2688878394b1b594d0da608eb15c6d15c9c154faa09ee07b5c550e096d68e9699020f9f45ebe208b06242d948bb4cf23ddeec6c0c
|
data/CHANGELOG.md
CHANGED
@@ -807,6 +807,10 @@ select {
|
|
807
807
|
margin-top: -1px;
|
808
808
|
}
|
809
809
|
|
810
|
+
.ariadne-mb-4 {
|
811
|
+
margin-bottom: 1rem;
|
812
|
+
}
|
813
|
+
|
810
814
|
.ariadne-ml-2 {
|
811
815
|
margin-left: 0.5rem;
|
812
816
|
}
|
@@ -823,6 +827,10 @@ select {
|
|
823
827
|
margin-right: 0.5rem;
|
824
828
|
}
|
825
829
|
|
830
|
+
.ariadne-mr-4 {
|
831
|
+
margin-right: 1rem;
|
832
|
+
}
|
833
|
+
|
826
834
|
.ariadne-mt-0 {
|
827
835
|
margin-top: 0px;
|
828
836
|
}
|
@@ -971,6 +979,10 @@ select {
|
|
971
979
|
width: 2.25rem;
|
972
980
|
}
|
973
981
|
|
982
|
+
.ariadne-w-96 {
|
983
|
+
width: 24rem;
|
984
|
+
}
|
985
|
+
|
974
986
|
.ariadne-w-auto {
|
975
987
|
width: auto;
|
976
988
|
}
|
@@ -1436,6 +1448,11 @@ select {
|
|
1436
1448
|
padding-bottom: 1.25rem;
|
1437
1449
|
}
|
1438
1450
|
|
1451
|
+
.ariadne-py-6 {
|
1452
|
+
padding-top: 1.5rem;
|
1453
|
+
padding-bottom: 1.5rem;
|
1454
|
+
}
|
1455
|
+
|
1439
1456
|
.ariadne-pb-1 {
|
1440
1457
|
padding-bottom: 0.25rem;
|
1441
1458
|
}
|
@@ -2173,6 +2190,10 @@ select {
|
|
2173
2190
|
}
|
2174
2191
|
}
|
2175
2192
|
|
2193
|
+
.\[\&\:last\]\:ariadne-mr-0:last {
|
2194
|
+
margin-right: 0px;
|
2195
|
+
}
|
2196
|
+
|
2176
2197
|
.\[\&\>span\]\:ariadne-p-0>span {
|
2177
2198
|
padding: 0px;
|
2178
2199
|
}
|