@aws-amplify/ui 3.2.0 → 3.3.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 +21 -21
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +121 -77
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/dist/styles.css +26 -18
- package/dist/theme.css +1 -1
- package/package.json +6 -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 Tue, 15 Mar 2022 21:42:36 GMT
|
|
7
7
|
*/
|
|
8
8
|
:root, [data-amplify-theme] {
|
|
9
9
|
--amplify-transforms-slide-x-large: translateX(2em);
|
|
@@ -1553,6 +1553,11 @@ h6.amplify-heading {
|
|
|
1553
1553
|
[data-amplify-authenticator] [data-state=inactive] {
|
|
1554
1554
|
background-color: var(--amplify-components-authenticator-state-inactive-background-color);
|
|
1555
1555
|
}
|
|
1556
|
+
@media (max-width: 26rem) {
|
|
1557
|
+
[data-amplify-authenticator] [data-amplify-sign-up-errors] {
|
|
1558
|
+
font-size: 0.688rem;
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1556
1561
|
|
|
1557
1562
|
.amplify-card {
|
|
1558
1563
|
background-color: var(--amplify-components-card-background-color);
|
|
@@ -1561,7 +1566,7 @@ h6.amplify-heading {
|
|
|
1561
1566
|
border-style: var(--amplify-components-card-border-style);
|
|
1562
1567
|
border-color: var(--amplify-components-card-border-color);
|
|
1563
1568
|
box-shadow: var(--amplify-components-card-box-shadow);
|
|
1564
|
-
display:
|
|
1569
|
+
display: block;
|
|
1565
1570
|
padding: var(--amplify-components-card-padding);
|
|
1566
1571
|
}
|
|
1567
1572
|
.amplify-card[data-variation=outlined] {
|
|
@@ -1958,22 +1963,6 @@ h6.amplify-heading {
|
|
|
1958
1963
|
color: var(--amplify-components-field-label-color);
|
|
1959
1964
|
}
|
|
1960
1965
|
|
|
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
1966
|
.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
1967
|
border-start-start-radius: 0;
|
|
1979
1968
|
border-end-start-radius: 0;
|
|
@@ -2258,6 +2247,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2258
2247
|
align-items: var(--amplify-components-radio-align-items);
|
|
2259
2248
|
justify-content: var(--amplify-components-radio-justify-content);
|
|
2260
2249
|
gap: inherit;
|
|
2250
|
+
flex-direction: row-reverse;
|
|
2261
2251
|
}
|
|
2262
2252
|
|
|
2263
2253
|
.amplify-radio[data-disabled=true] {
|
|
@@ -2335,10 +2325,12 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2335
2325
|
.amplify-radiogroup {
|
|
2336
2326
|
gap: inherit;
|
|
2337
2327
|
flex-direction: inherit;
|
|
2328
|
+
align-items: inherit;
|
|
2338
2329
|
}
|
|
2339
2330
|
|
|
2340
2331
|
.amplify-radiogroupfield {
|
|
2341
2332
|
flex-direction: column;
|
|
2333
|
+
align-items: flex-start;
|
|
2342
2334
|
}
|
|
2343
2335
|
|
|
2344
2336
|
.amplify-select__wrapper {
|
|
@@ -2880,6 +2872,22 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2880
2872
|
}
|
|
2881
2873
|
}
|
|
2882
2874
|
|
|
2875
|
+
[data-label-position=start] {
|
|
2876
|
+
flex-direction: row;
|
|
2877
|
+
}
|
|
2878
|
+
|
|
2879
|
+
[data-label-position=end] {
|
|
2880
|
+
flex-direction: row-reverse;
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2883
|
+
[data-label-position=top] {
|
|
2884
|
+
flex-direction: column;
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
[data-label-position=bottom] {
|
|
2888
|
+
flex-direction: column-reverse;
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2883
2891
|
.amplify-visually-hidden {
|
|
2884
2892
|
position: absolute;
|
|
2885
2893
|
width: 1px;
|
package/dist/theme.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -17,6 +17,11 @@
|
|
|
17
17
|
},
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/aws-amplify/amplify-ui",
|
|
23
|
+
"directory": "packages/ui"
|
|
24
|
+
},
|
|
20
25
|
"files": [
|
|
21
26
|
"dist",
|
|
22
27
|
"LICENSE"
|