react-gldn-kit 0.1.11 → 0.1.13
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.js +1 -1
- package/dist/lib/components/Layouts/ModalLayout/component/ModalContent/index.d.ts +1 -1
- package/dist/lib/components/Layouts/ModalLayout/component/ModalContent/index.js +6 -2
- package/dist/lib/components/Layouts/ModalLayout/index.js +2 -2
- package/dist/lib/components/Layouts/ModalLayout/types.d.ts +1 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/index.js +9 -8
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/types.d.ts +1 -0
- package/dist/lib/components/Modals/Alert/components/OneStepPrize/index.d.ts +2 -0
- package/dist/lib/components/Modals/Alert/components/OneStepPrize/index.js +80 -0
- package/dist/lib/components/Modals/Alert/index.js +4 -1
- package/dist/lib/index.d.ts +11 -1
- package/dist/lib/index.js +26 -5
- package/dist/lib/zustandStore/connection/selectors.d.ts +7 -0
- package/dist/lib/zustandStore/connection/selectors.js +19 -0
- package/dist/lib/zustandStore/connection/store.d.ts +2 -0
- package/dist/lib/zustandStore/connection/store.js +11 -0
- package/dist/lib/zustandStore/connection/types.d.ts +8 -0
- package/dist/lib/zustandStore/connection/types.js +2 -0
- package/dist/lib/zustandStore/games/selectors.d.ts +9 -0
- package/dist/lib/zustandStore/games/selectors.js +26 -0
- package/dist/lib/zustandStore/games/store.d.ts +2 -0
- package/dist/lib/zustandStore/games/store.js +22 -0
- package/dist/lib/zustandStore/games/types.d.ts +11 -0
- package/dist/lib/zustandStore/games/types.js +2 -0
- package/dist/lib/zustandStore/wheelPromo/selectors.d.ts +5 -0
- package/dist/lib/zustandStore/wheelPromo/selectors.js +14 -0
- package/dist/lib/zustandStore/wheelPromo/store.d.ts +2 -0
- package/dist/lib/zustandStore/wheelPromo/store.js +11 -0
- package/dist/lib/zustandStore/wheelPromo/types.d.ts +15 -0
- package/dist/lib/zustandStore/wheelPromo/types.js +12 -0
- package/dist/main.css +136 -93
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -1352,7 +1352,7 @@
|
|
|
1352
1352
|
|
|
1353
1353
|
@media (min-width: 768px) {
|
|
1354
1354
|
.KIT__SignUp-module__wrapperReferralFailure___Nv53h {
|
|
1355
|
-
max-width:
|
|
1355
|
+
max-width: 360px;
|
|
1356
1356
|
border-radius: var(--border-l);
|
|
1357
1357
|
}
|
|
1358
1358
|
}
|
|
@@ -1448,6 +1448,97 @@
|
|
|
1448
1448
|
.KIT__Timer-module__time___imFax:first-child {
|
|
1449
1449
|
margin-left: 0;
|
|
1450
1450
|
}
|
|
1451
|
+
.KIT__SignIn-module__content___fTb1F {
|
|
1452
|
+
width: 100%;
|
|
1453
|
+
display: flex;
|
|
1454
|
+
flex-direction: column;
|
|
1455
|
+
align-items: center;
|
|
1456
|
+
overflow: hidden;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.KIT__SignIn-module__wrapperTitle___lYD6o {
|
|
1460
|
+
padding: var(--indent-base);
|
|
1461
|
+
margin-bottom: var(--indent-base);
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__wrapperTabs___DX4sX {
|
|
1465
|
+
width: calc(var(--full) - var(--indent-base-double));
|
|
1466
|
+
margin-bottom: var(--indent-base);
|
|
1467
|
+
border-bottom: 2px solid transparent;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.KIT__SignIn-module__marginInput___DhXR2 {
|
|
1471
|
+
margin-bottom: var(--indent-base);
|
|
1472
|
+
flex-shrink: 0;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.KIT__SignIn-module__wrapperForms___XD4t9 {
|
|
1476
|
+
width: 100%;
|
|
1477
|
+
display: flex;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__passwordField___JDN8l,
|
|
1481
|
+
.KIT__SignIn-module__wrapperForm___QHw6_ > div,
|
|
1482
|
+
.KIT__SignIn-module__lostPsw___UZZrP {
|
|
1483
|
+
width: calc(var(--full) - var(--indent-base-double));
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
.KIT__SignIn-module__wrapperForm___QHw6_ {
|
|
1487
|
+
flex-shrink: 0;
|
|
1488
|
+
width: 100%;
|
|
1489
|
+
display: flex;
|
|
1490
|
+
flex-direction: column;
|
|
1491
|
+
align-items: center;
|
|
1492
|
+
transition: 0.5s;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.KIT__SignIn-module__formOne___AFk7Y {
|
|
1496
|
+
transform: translateX(0%);
|
|
1497
|
+
transition: 0.5s;
|
|
1498
|
+
}
|
|
1499
|
+
.KIT__SignIn-module__formTwo___mCHk4 {
|
|
1500
|
+
transition: 0.5s;
|
|
1501
|
+
transform: translateX(-100%);
|
|
1502
|
+
}
|
|
1503
|
+
.KIT__SignIn-module__formThree___NlshF {
|
|
1504
|
+
transition: 0.5s;
|
|
1505
|
+
transform: translateX(-200%);
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.KIT__SignIn-module__lostPsw___UZZrP {
|
|
1509
|
+
text-align: right;
|
|
1510
|
+
color: var(--sign-in-modal-lost-password-color);
|
|
1511
|
+
font-weight: 400;
|
|
1512
|
+
font-size: 12px;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
.KIT__SignIn-module__dash___C4wzA {
|
|
1516
|
+
width: calc(var(--full) - var(--indent-base-double));
|
|
1517
|
+
margin-bottom: var(--indent-base);
|
|
1518
|
+
border-bottom: 2px solid var(--border-color-gray);
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__btn___zszwq {
|
|
1522
|
+
width: calc(var(--full) - var(--indent-base-double));
|
|
1523
|
+
max-width: calc(var(--full) - var(--indent-base-double));
|
|
1524
|
+
min-width: calc(var(--full) - var(--indent-base-double));
|
|
1525
|
+
margin-bottom: var(--indent-base);
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.KIT__SignIn-module__btn___zszwq:last-child {
|
|
1529
|
+
margin-bottom: 0;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.KIT__SignIn-module__reg___y_Vwi {
|
|
1533
|
+
opacity: 0.7;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
@media (min-width: 768px) {
|
|
1537
|
+
.KIT__SignIn-module__wrapperSignInModal___It11Z {
|
|
1538
|
+
width: 500px;
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1451
1542
|
.KIT__PopUpHeader-module__wrapperPopUpHeader___GmjiQ {
|
|
1452
1543
|
display: flex;
|
|
1453
1544
|
justify-content: center;
|
|
@@ -1972,97 +2063,6 @@
|
|
|
1972
2063
|
font-weight: 700;
|
|
1973
2064
|
}
|
|
1974
2065
|
|
|
1975
|
-
.KIT__SignIn-module__content___fTb1F {
|
|
1976
|
-
width: 100%;
|
|
1977
|
-
display: flex;
|
|
1978
|
-
flex-direction: column;
|
|
1979
|
-
align-items: center;
|
|
1980
|
-
overflow: hidden;
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
.KIT__SignIn-module__wrapperTitle___lYD6o {
|
|
1984
|
-
padding: var(--indent-base);
|
|
1985
|
-
margin-bottom: var(--indent-base);
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__wrapperTabs___DX4sX {
|
|
1989
|
-
width: calc(var(--full) - var(--indent-base-double));
|
|
1990
|
-
margin-bottom: var(--indent-base);
|
|
1991
|
-
border-bottom: 2px solid transparent;
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
|
-
.KIT__SignIn-module__marginInput___DhXR2 {
|
|
1995
|
-
margin-bottom: var(--indent-base);
|
|
1996
|
-
flex-shrink: 0;
|
|
1997
|
-
}
|
|
1998
|
-
|
|
1999
|
-
.KIT__SignIn-module__wrapperForms___XD4t9 {
|
|
2000
|
-
width: 100%;
|
|
2001
|
-
display: flex;
|
|
2002
|
-
}
|
|
2003
|
-
|
|
2004
|
-
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__passwordField___JDN8l,
|
|
2005
|
-
.KIT__SignIn-module__wrapperForm___QHw6_ > div,
|
|
2006
|
-
.KIT__SignIn-module__lostPsw___UZZrP {
|
|
2007
|
-
width: calc(var(--full) - var(--indent-base-double));
|
|
2008
|
-
}
|
|
2009
|
-
|
|
2010
|
-
.KIT__SignIn-module__wrapperForm___QHw6_ {
|
|
2011
|
-
flex-shrink: 0;
|
|
2012
|
-
width: 100%;
|
|
2013
|
-
display: flex;
|
|
2014
|
-
flex-direction: column;
|
|
2015
|
-
align-items: center;
|
|
2016
|
-
transition: 0.5s;
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
.KIT__SignIn-module__formOne___AFk7Y {
|
|
2020
|
-
transform: translateX(0%);
|
|
2021
|
-
transition: 0.5s;
|
|
2022
|
-
}
|
|
2023
|
-
.KIT__SignIn-module__formTwo___mCHk4 {
|
|
2024
|
-
transition: 0.5s;
|
|
2025
|
-
transform: translateX(-100%);
|
|
2026
|
-
}
|
|
2027
|
-
.KIT__SignIn-module__formThree___NlshF {
|
|
2028
|
-
transition: 0.5s;
|
|
2029
|
-
transform: translateX(-200%);
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
.KIT__SignIn-module__lostPsw___UZZrP {
|
|
2033
|
-
text-align: right;
|
|
2034
|
-
color: var(--sign-in-modal-lost-password-color);
|
|
2035
|
-
font-weight: 400;
|
|
2036
|
-
font-size: 12px;
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
.KIT__SignIn-module__dash___C4wzA {
|
|
2040
|
-
width: calc(var(--full) - var(--indent-base-double));
|
|
2041
|
-
margin-bottom: var(--indent-base);
|
|
2042
|
-
border-bottom: 2px solid var(--border-color-gray);
|
|
2043
|
-
}
|
|
2044
|
-
|
|
2045
|
-
.KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__btn___zszwq {
|
|
2046
|
-
width: calc(var(--full) - var(--indent-base-double));
|
|
2047
|
-
max-width: calc(var(--full) - var(--indent-base-double));
|
|
2048
|
-
min-width: calc(var(--full) - var(--indent-base-double));
|
|
2049
|
-
margin-bottom: var(--indent-base);
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
.KIT__SignIn-module__btn___zszwq:last-child {
|
|
2053
|
-
margin-bottom: 0;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
.KIT__SignIn-module__reg___y_Vwi {
|
|
2057
|
-
opacity: 0.7;
|
|
2058
|
-
}
|
|
2059
|
-
|
|
2060
|
-
@media (min-width: 768px) {
|
|
2061
|
-
.KIT__SignIn-module__wrapperSignInModal___It11Z {
|
|
2062
|
-
width: 500px;
|
|
2063
|
-
}
|
|
2064
|
-
}
|
|
2065
|
-
|
|
2066
2066
|
.KIT__Credentials-module__wrapperCredentials___AH3RX {
|
|
2067
2067
|
display: flex;
|
|
2068
2068
|
flex-direction: column;
|
|
@@ -2091,6 +2091,49 @@
|
|
|
2091
2091
|
overflow: hidden;
|
|
2092
2092
|
text-overflow: ellipsis;
|
|
2093
2093
|
}
|
|
2094
|
+
.KIT__OneStepPrize-module__wrapper___VIWUr {
|
|
2095
|
+
height: 100%;
|
|
2096
|
+
width: 100%;
|
|
2097
|
+
display: flex;
|
|
2098
|
+
flex-direction: column;
|
|
2099
|
+
align-items: center;
|
|
2100
|
+
justify-content: center;
|
|
2101
|
+
gap: var(--indent-xxl);
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
.KIT__OneStepPrize-module__prizeText___mM81Z {
|
|
2105
|
+
-o-object-fit: contain;
|
|
2106
|
+
object-fit: contain;
|
|
2107
|
+
--max-width: 70%;
|
|
2108
|
+
max-height: 320px;
|
|
2109
|
+
max-width: 70%;
|
|
2110
|
+
max-width: var(--max-width);
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.KIT__OneStepPrize-module__claimButton___Vxp6A {
|
|
2114
|
+
--width: 300px;
|
|
2115
|
+
--height: 45px;
|
|
2116
|
+
min-width: 300px;
|
|
2117
|
+
min-width: var(--width);
|
|
2118
|
+
max-width: 300px;
|
|
2119
|
+
max-width: var(--width);
|
|
2120
|
+
height: 45px;
|
|
2121
|
+
height: var(--height);
|
|
2122
|
+
font-weight: 700;
|
|
2123
|
+
color: var(--base-0);
|
|
2124
|
+
display: flex;
|
|
2125
|
+
align-items: center;
|
|
2126
|
+
justify-content: center;
|
|
2127
|
+
border-radius: var(--border-m);
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
@media screen and (min-width: 768px) {
|
|
2131
|
+
|
|
2132
|
+
.KIT__OneStepPrize-module__claimButton___Vxp6A {
|
|
2133
|
+
--height: 55px;
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2094
2137
|
.KIT__Alert-module__wrapperModal___lOle6 {
|
|
2095
2138
|
width: 100%;
|
|
2096
2139
|
height: 100%;
|
|
@@ -3192,6 +3235,7 @@
|
|
|
3192
3235
|
height: 80px;
|
|
3193
3236
|
height: var(--size);
|
|
3194
3237
|
cursor: pointer;
|
|
3238
|
+
text-shadow: 0 5px 0 #290049, 0 6.38508px 11.706px #000000;
|
|
3195
3239
|
}
|
|
3196
3240
|
|
|
3197
3241
|
.KIT__Wheel-module__btnImg___rFBWp {
|
|
@@ -3210,7 +3254,6 @@
|
|
|
3210
3254
|
font-weight: 900;
|
|
3211
3255
|
font-size: var(--font-size-xxl);
|
|
3212
3256
|
color: rgb(var(--white));
|
|
3213
|
-
text-shadow: 0 5px 0 #290049, 0 6.38508px 11.706px #000000;
|
|
3214
3257
|
}
|
|
3215
3258
|
|
|
3216
3259
|
.KIT__Wheel-module__slotName___MqFJ9 {
|