react-gldn-kit 0.1.16 → 0.1.18
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/Modals/Alert/components/Auth/SignUp/components/CountrySelector/index.js +1 -1
- package/dist/lib/components/Modals/Alert/index.js +0 -2
- package/dist/lib/constants/mock.d.ts +0 -0
- package/dist/lib/constants/mock.js +0 -0
- package/dist/main.css +2 -1
- package/package.json +1 -1
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/components/CountrySelector/constants.d.ts +0 -7
- package/dist/lib/components/Modals/Alert/components/Auth/SignUp/components/CountrySelector/constants.js +0 -815
package/dist/lib/components/Modals/Alert/components/Auth/SignUp/components/CountrySelector/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var react_1 = require("react");
|
|
|
31
31
|
var classnames_1 = __importDefault(require("classnames"));
|
|
32
32
|
var store_1 = require("zustandStore/forms/signUp/store");
|
|
33
33
|
var selectors_1 = require("zustandStore/forms/signUp/selectors");
|
|
34
|
-
var constants_1 = require("
|
|
34
|
+
var constants_1 = require("components/SignUp/CountrySelector/constants");
|
|
35
35
|
var Selector_1 = require("components/ui/Selector");
|
|
36
36
|
var styles = __importStar(require("../../SignUp.module.css"));
|
|
37
37
|
var CountrySelector = function (_a) {
|
|
@@ -154,8 +154,6 @@ var Alerts = function (props) {
|
|
|
154
154
|
return (0, jsx_runtime_1.jsx)(Credentials, { sendCommand: sendCommand });
|
|
155
155
|
case types_1.EModalTypes.LostPassword:
|
|
156
156
|
return (0, jsx_runtime_1.jsx)(LostPassword, { sendCommand: sendCommand });
|
|
157
|
-
case types_1.EModalTypes.LostPassword:
|
|
158
|
-
return (0, jsx_runtime_1.jsx)(LostPassword, { sendCommand: sendCommand });
|
|
159
157
|
case types_1.EModalTypes.SetNewPassword:
|
|
160
158
|
return (0, jsx_runtime_1.jsx)(SetNewPassword, { sendCommand: sendCommand });
|
|
161
159
|
default:
|
|
File without changes
|
|
File without changes
|
package/dist/main.css
CHANGED
|
@@ -1688,9 +1688,10 @@
|
|
|
1688
1688
|
margin-bottom: var(--indent-l);
|
|
1689
1689
|
}
|
|
1690
1690
|
|
|
1691
|
-
@media (min-width: 768px) {
|
|
1691
|
+
@media screen and (min-width: 768px) {
|
|
1692
1692
|
.KIT__ModalLayout-module__wrapperModalLayout___A4nBX {
|
|
1693
1693
|
max-height: calc(100dvh - (var(--height-48) * 2 + var(--indent-xxl)));
|
|
1694
|
+
border-radius: var(--border-xl);
|
|
1694
1695
|
}
|
|
1695
1696
|
}
|
|
1696
1697
|
|
package/package.json
CHANGED