react-gldn-kit 0.1.44 → 0.1.46
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/3be6eac28b0509eb37880fbab7f8c7a2.svg +3 -0
- package/dist/index.js +1 -1
- package/dist/lib/components/Modals/Alert/components/Auth/SignIn/constants.js +4 -4
- package/dist/lib/components/Modals/Alert/components/Auth/SignIn/index.js +1 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/index.js +1 -1
- package/dist/lib/components/Modals/Alert/components/Auth/SignUpTypeTwo/index.d.ts +1 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUpTypeTwo/index.js +224 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUpTypeTwo/types.d.ts +7 -0
- package/dist/lib/components/Modals/Alert/components/Auth/SignUpTypeTwo/types.js +11 -0
- package/dist/lib/components/Modals/Alert/index.js +19 -2
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/constants.d.ts +5 -0
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/constants.js +35 -0
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/index.d.ts +2 -0
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/index.js +85 -0
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/types.d.ts +5 -0
- package/dist/lib/components/SignUpTypeTwo/CurrencyBox/types.js +2 -0
- package/dist/lib/components/SignUpTypeTwo/InputBox/index.d.ts +15 -0
- package/dist/lib/components/SignUpTypeTwo/InputBox/index.js +61 -0
- package/dist/lib/components/SignUpTypeTwo/PasswordBox/index.d.ts +5 -0
- package/dist/lib/components/SignUpTypeTwo/PasswordBox/index.js +66 -0
- package/dist/lib/components/SignUpTypeTwo/PhoneBox/components/Code/index.d.ts +9 -0
- package/dist/lib/components/SignUpTypeTwo/PhoneBox/components/Code/index.js +50 -0
- package/dist/lib/components/SignUpTypeTwo/PhoneBox/index.d.ts +5 -0
- package/dist/lib/components/SignUpTypeTwo/PhoneBox/index.js +95 -0
- package/dist/lib/hooks/usePhoneBox/constants.d.ts +4 -0
- package/dist/lib/hooks/usePhoneBox/constants.js +40 -0
- package/dist/lib/hooks/usePhoneBox/index.d.ts +6 -0
- package/dist/lib/hooks/usePhoneBox/index.js +34 -0
- package/dist/lib/hooks/usePhoneBox/types.d.ts +6 -0
- package/dist/lib/hooks/usePhoneBox/types.js +2 -0
- package/dist/lib/index.d.ts +3 -1
- package/dist/lib/index.js +8 -4
- package/dist/lib/service/validation.d.ts +2 -0
- package/dist/lib/service/validation.js +4 -4
- package/dist/lib/zustandStore/alerts/modal/types.d.ts +5 -4
- package/dist/lib/zustandStore/alerts/modal/types.js +5 -4
- package/dist/lib/zustandStore/forms/signIn/types.d.ts +2 -1
- package/dist/lib/zustandStore/forms/signIn/types.js +1 -1
- package/dist/main.css +532 -11
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.0751 1.73235L4.77508 9.23235C4.70598 9.31466 4.61998 9.38116 4.52293 9.42734C4.42589 9.47352 4.32004 9.4983 4.21258 9.50001H4.19993C4.0948 9.49997 3.99086 9.47783 3.89485 9.43503C3.79883 9.39224 3.71288 9.32973 3.64258 9.25157L0.942581 6.25157C0.874011 6.17884 0.82067 6.09314 0.785694 5.9995C0.750718 5.90587 0.734813 5.80618 0.738912 5.70631C0.743012 5.60644 0.767034 5.50839 0.809566 5.41794C0.852099 5.32748 0.912284 5.24644 0.986584 5.17957C1.06088 5.11271 1.1478 5.06138 1.24222 5.02858C1.33665 4.99579 1.43667 4.9822 1.53642 4.98862C1.63617 4.99503 1.73364 5.02132 1.82308 5.06594C1.91253 5.11056 1.99215 5.17261 2.05727 5.24845L4.18024 7.6072L9.92664 0.767665C10.0555 0.618639 10.2379 0.526324 10.4343 0.510672C10.6307 0.495021 10.8254 0.557292 10.9763 0.684024C11.1272 0.810756 11.2221 0.991769 11.2406 1.18794C11.2591 1.3841 11.1996 1.57967 11.0751 1.73235Z" fill="black" fill-opacity="0.5"/>
|
|
3
|
+
</svg>
|