@aws-amplify/ui 3.2.0 → 3.2.1
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.
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +50 -31
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -18
- package/dist/theme.css +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
5
|
* Do not edit directly
|
|
6
|
-
* Generated on
|
|
6
|
+
* Generated on Wed, 09 Mar 2022 00:15:33 GMT
|
|
7
7
|
*/
|
|
8
8
|
:root, [data-amplify-theme] {
|
|
9
9
|
--amplify-transforms-slide-x-large: translateX(2em);
|
|
@@ -1561,7 +1561,7 @@ h6.amplify-heading {
|
|
|
1561
1561
|
border-style: var(--amplify-components-card-border-style);
|
|
1562
1562
|
border-color: var(--amplify-components-card-border-color);
|
|
1563
1563
|
box-shadow: var(--amplify-components-card-box-shadow);
|
|
1564
|
-
display:
|
|
1564
|
+
display: block;
|
|
1565
1565
|
padding: var(--amplify-components-card-padding);
|
|
1566
1566
|
}
|
|
1567
1567
|
.amplify-card[data-variation=outlined] {
|
|
@@ -1958,22 +1958,6 @@ h6.amplify-heading {
|
|
|
1958
1958
|
color: var(--amplify-components-field-label-color);
|
|
1959
1959
|
}
|
|
1960
1960
|
|
|
1961
|
-
[data-label-position=start] {
|
|
1962
|
-
flex-direction: row;
|
|
1963
|
-
}
|
|
1964
|
-
|
|
1965
|
-
[data-label-position=end] {
|
|
1966
|
-
flex-direction: row-reverse;
|
|
1967
|
-
}
|
|
1968
|
-
|
|
1969
|
-
[data-label-position=top] {
|
|
1970
|
-
flex-direction: column;
|
|
1971
|
-
}
|
|
1972
|
-
|
|
1973
|
-
[data-label-position=bottom] {
|
|
1974
|
-
flex-direction: column-reverse;
|
|
1975
|
-
}
|
|
1976
|
-
|
|
1977
1961
|
.amplify-field-group__outer-end .amplify-select__wrapper .amplify-select, .amplify-field-group__outer-end .amplify-field-group__control, .amplify-field-group__outer-start .amplify-select__wrapper:not(:first-child) .amplify-select:not(:first-child), .amplify-field-group__outer-start .amplify-field-group__control:not(:first-child), .amplify-field-group :not(:first-child) .amplify-input {
|
|
1978
1962
|
border-start-start-radius: 0;
|
|
1979
1963
|
border-end-start-radius: 0;
|
|
@@ -2258,6 +2242,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2258
2242
|
align-items: var(--amplify-components-radio-align-items);
|
|
2259
2243
|
justify-content: var(--amplify-components-radio-justify-content);
|
|
2260
2244
|
gap: inherit;
|
|
2245
|
+
flex-direction: row-reverse;
|
|
2261
2246
|
}
|
|
2262
2247
|
|
|
2263
2248
|
.amplify-radio[data-disabled=true] {
|
|
@@ -2335,10 +2320,12 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2335
2320
|
.amplify-radiogroup {
|
|
2336
2321
|
gap: inherit;
|
|
2337
2322
|
flex-direction: inherit;
|
|
2323
|
+
align-items: inherit;
|
|
2338
2324
|
}
|
|
2339
2325
|
|
|
2340
2326
|
.amplify-radiogroupfield {
|
|
2341
2327
|
flex-direction: column;
|
|
2328
|
+
align-items: flex-start;
|
|
2342
2329
|
}
|
|
2343
2330
|
|
|
2344
2331
|
.amplify-select__wrapper {
|
|
@@ -2880,6 +2867,22 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2880
2867
|
}
|
|
2881
2868
|
}
|
|
2882
2869
|
|
|
2870
|
+
[data-label-position=start] {
|
|
2871
|
+
flex-direction: row;
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
[data-label-position=end] {
|
|
2875
|
+
flex-direction: row-reverse;
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
[data-label-position=top] {
|
|
2879
|
+
flex-direction: column;
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
[data-label-position=bottom] {
|
|
2883
|
+
flex-direction: column-reverse;
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2883
2886
|
.amplify-visually-hidden {
|
|
2884
2887
|
position: absolute;
|
|
2885
2888
|
width: 1px;
|
package/dist/theme.css
CHANGED