@ory/elements-react 1.2.0-rc.0 → 1.2.0-rc.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/index.d.mts +229 -51
- package/dist/index.d.ts +229 -51
- package/dist/index.js +637 -268
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +632 -272
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +68 -9
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.d.mts +1 -6
- package/dist/theme/default/index.d.ts +1 -6
- package/dist/theme/default/index.js +1411 -1054
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +1308 -956
- package/dist/theme/default/index.mjs.map +1 -1
- package/package.json +2 -1
- package/tailwind/generated/variables.css +0 -3
- package/babel.config.js +0 -10
|
@@ -212,9 +212,6 @@
|
|
|
212
212
|
.ory-elements .inset-0 {
|
|
213
213
|
inset: calc(var(--spacing) * 0);
|
|
214
214
|
}
|
|
215
|
-
.ory-elements .right-0 {
|
|
216
|
-
right: calc(var(--spacing) * 0);
|
|
217
|
-
}
|
|
218
215
|
.ory-elements .z-50 {
|
|
219
216
|
z-index: 50;
|
|
220
217
|
}
|
|
@@ -341,12 +338,12 @@
|
|
|
341
338
|
.ory-elements .min-h-\[72px\] {
|
|
342
339
|
min-height: 72px;
|
|
343
340
|
}
|
|
341
|
+
.ory-elements .w-\(--breakpoint-sm\) {
|
|
342
|
+
width: var(--breakpoint-sm);
|
|
343
|
+
}
|
|
344
344
|
.ory-elements .w-7 {
|
|
345
345
|
width: calc(var(--spacing) * 7);
|
|
346
346
|
}
|
|
347
|
-
.ory-elements .w-12 {
|
|
348
|
-
width: calc(var(--spacing) * 12);
|
|
349
|
-
}
|
|
350
347
|
.ory-elements .w-full {
|
|
351
348
|
width: 100%;
|
|
352
349
|
}
|
|
@@ -497,6 +494,14 @@
|
|
|
497
494
|
border-top-left-radius: var(--radius-cards);
|
|
498
495
|
border-top-right-radius: var(--radius-cards);
|
|
499
496
|
}
|
|
497
|
+
.ory-elements .rounded-l-forms {
|
|
498
|
+
border-top-left-radius: var(--radius-forms);
|
|
499
|
+
border-bottom-left-radius: var(--radius-forms);
|
|
500
|
+
}
|
|
501
|
+
.ory-elements .rounded-r-none {
|
|
502
|
+
border-top-right-radius: 0;
|
|
503
|
+
border-bottom-right-radius: 0;
|
|
504
|
+
}
|
|
500
505
|
.ory-elements .rounded-b-cards {
|
|
501
506
|
border-bottom-right-radius: var(--radius-cards);
|
|
502
507
|
border-bottom-left-radius: var(--radius-cards);
|
|
@@ -605,6 +610,9 @@
|
|
|
605
610
|
.ory-elements .bg-toggle-foreground-default {
|
|
606
611
|
background-color: var(--color-toggle-foreground-default);
|
|
607
612
|
}
|
|
613
|
+
.ory-elements .bg-transparent {
|
|
614
|
+
background-color: transparent;
|
|
615
|
+
}
|
|
608
616
|
.ory-elements .fill-checkbox-foreground-checked {
|
|
609
617
|
fill: var(--color-checkbox-foreground-checked);
|
|
610
618
|
}
|
|
@@ -953,6 +961,11 @@
|
|
|
953
961
|
background-color: var(--color-checkbox-background-checked);
|
|
954
962
|
}
|
|
955
963
|
}
|
|
964
|
+
.ory-elements .focus-within\:border-input-border-focus {
|
|
965
|
+
&:focus-within {
|
|
966
|
+
border-color: var(--color-input-border-focus);
|
|
967
|
+
}
|
|
968
|
+
}
|
|
956
969
|
.ory-elements .hover\:border-button-identifier-border-border-hover {
|
|
957
970
|
&:hover {
|
|
958
971
|
@media (hover: hover) {
|
|
@@ -1072,9 +1085,13 @@
|
|
|
1072
1085
|
}
|
|
1073
1086
|
}
|
|
1074
1087
|
}
|
|
1075
|
-
.ory-elements .focus\:border-input-border-
|
|
1076
|
-
&:focus {
|
|
1077
|
-
|
|
1088
|
+
.ory-elements .not-focus-within\:hover\:border-input-border-hover {
|
|
1089
|
+
&:not(*:focus-within) {
|
|
1090
|
+
&:hover {
|
|
1091
|
+
@media (hover: hover) {
|
|
1092
|
+
border-color: var(--color-input-border-hover);
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1078
1095
|
}
|
|
1079
1096
|
}
|
|
1080
1097
|
.ory-elements .focus\:ring-0 {
|
|
@@ -1088,6 +1105,12 @@
|
|
|
1088
1105
|
var(--tw-shadow);
|
|
1089
1106
|
}
|
|
1090
1107
|
}
|
|
1108
|
+
.ory-elements .focus\:outline-none {
|
|
1109
|
+
&:focus {
|
|
1110
|
+
--tw-outline-style: none;
|
|
1111
|
+
outline-style: none;
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1091
1114
|
.ory-elements .focus-visible\:border-input-border-focus {
|
|
1092
1115
|
&:focus-visible {
|
|
1093
1116
|
border-color: var(--color-input-border-focus);
|
|
@@ -1103,6 +1126,12 @@
|
|
|
1103
1126
|
}
|
|
1104
1127
|
}
|
|
1105
1128
|
}
|
|
1129
|
+
.ory-elements .focus-visible\:outline-none {
|
|
1130
|
+
&:focus-visible {
|
|
1131
|
+
--tw-outline-style: none;
|
|
1132
|
+
outline-style: none;
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1106
1135
|
.ory-elements .disabled\:cursor-default {
|
|
1107
1136
|
&:disabled {
|
|
1108
1137
|
cursor: default;
|
|
@@ -1192,6 +1221,21 @@
|
|
|
1192
1221
|
color: var(--color-button-secondary-foreground-disabled);
|
|
1193
1222
|
}
|
|
1194
1223
|
}
|
|
1224
|
+
.ory-elements .data-\[disabled\=true\]\:border-input-border-disabled {
|
|
1225
|
+
&[data-disabled=true] {
|
|
1226
|
+
border-color: var(--color-input-border-disabled);
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
.ory-elements .data-\[disabled\=true\]\:bg-input-background-disabled {
|
|
1230
|
+
&[data-disabled=true] {
|
|
1231
|
+
background-color: var(--color-input-background-disabled);
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
.ory-elements .data-\[disabled\=true\]\:text-input-foreground-disabled {
|
|
1235
|
+
&[data-disabled=true] {
|
|
1236
|
+
color: var(--color-input-foreground-disabled);
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1195
1239
|
.ory-elements .data-\[state\=checked\]\:translate-x-3 {
|
|
1196
1240
|
&[data-state=checked] {
|
|
1197
1241
|
--tw-translate-x: calc(var(--spacing) * 3);
|
|
@@ -1343,6 +1387,11 @@
|
|
|
1343
1387
|
padding-left: 7px;
|
|
1344
1388
|
}
|
|
1345
1389
|
}
|
|
1390
|
+
.ory-elements .md\:w-\[712px\] {
|
|
1391
|
+
@media (width >= 48rem) {
|
|
1392
|
+
width: 712px;
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1346
1395
|
.ory-elements .md\:max-w-96 {
|
|
1347
1396
|
@media (width >= 48rem) {
|
|
1348
1397
|
max-width: calc(var(--spacing) * 96);
|
|
@@ -1383,6 +1432,11 @@
|
|
|
1383
1432
|
justify-content: space-between;
|
|
1384
1433
|
}
|
|
1385
1434
|
}
|
|
1435
|
+
.ory-elements .lg\:w-\[802px\] {
|
|
1436
|
+
@media (width >= 64rem) {
|
|
1437
|
+
width: 802px;
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1386
1440
|
.ory-elements .lg\:max-w-\[802px\] {
|
|
1387
1441
|
@media (width >= 64rem) {
|
|
1388
1442
|
max-width: 802px;
|
|
@@ -1393,6 +1447,11 @@
|
|
|
1393
1447
|
padding-block: calc(var(--spacing) * 4.5);
|
|
1394
1448
|
}
|
|
1395
1449
|
}
|
|
1450
|
+
.ory-elements .xl\:w-\[896px\] {
|
|
1451
|
+
@media (width >= 80rem) {
|
|
1452
|
+
width: 896px;
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1396
1455
|
.ory-elements .xl\:max-w-\[896px\] {
|
|
1397
1456
|
@media (width >= 80rem) {
|
|
1398
1457
|
max-width: 896px;
|