@solidstarters/solid-core-ui 1.1.130 → 1.1.132
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/components/auth/AuthLayout.js +15 -15
- package/dist/components/auth/AuthLayout.js.map +1 -1
- package/dist/components/auth/SolidForgotPassword.js +3 -3
- package/dist/components/auth/SolidForgotPassword.js.map +1 -1
- package/dist/components/auth/SolidInitialLoginOtp.js +3 -3
- package/dist/components/auth/SolidInitialLoginOtp.js.map +1 -1
- package/dist/components/auth/SolidInitiateRegisterOtp.js +3 -3
- package/dist/components/auth/SolidInitiateRegisterOtp.js.map +1 -1
- package/dist/components/auth/SolidLogin.js +5 -5
- package/dist/components/auth/SolidLogin.js.map +1 -1
- package/dist/components/auth/SolidOTPVerify.js +6 -6
- package/dist/components/auth/SolidOTPVerify.js.map +1 -1
- package/dist/components/auth/SolidRegister.js +5 -5
- package/dist/components/auth/SolidRegister.js.map +1 -1
- package/dist/components/auth/SolidResetPassword.js +5 -5
- package/dist/components/auth/SolidResetPassword.js.map +1 -1
- package/dist/components/common/BackButton.d.ts.map +1 -1
- package/dist/components/common/BackButton.js +30 -4
- package/dist/components/common/BackButton.js.map +1 -1
- package/dist/components/common/GeneralSettings.d.ts.map +1 -1
- package/dist/components/common/GeneralSettings.js +7 -5
- package/dist/components/common/GeneralSettings.js.map +1 -1
- package/dist/components/core/form/SolidFormView.d.ts +1 -0
- package/dist/components/core/form/SolidFormView.d.ts.map +1 -1
- package/dist/components/core/form/SolidFormView.js +22 -10
- package/dist/components/core/form/SolidFormView.js.map +1 -1
- package/dist/components/core/form/fields/SolidDateTimeField.d.ts +1 -0
- package/dist/components/core/form/fields/SolidDateTimeField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidDateTimeField.js +11 -1
- package/dist/components/core/form/fields/SolidDateTimeField.js.map +1 -1
- package/dist/components/core/form/fields/SolidPasswordField.d.ts +2 -1
- package/dist/components/core/form/fields/SolidPasswordField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidPasswordField.js +141 -13
- package/dist/components/core/form/fields/SolidPasswordField.js.map +1 -1
- package/dist/components/core/form/fields/SolidSelectionDynamicField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidSelectionDynamicField.js +27 -8
- package/dist/components/core/form/fields/SolidSelectionDynamicField.js.map +1 -1
- package/dist/components/core/form/fields/SolidSelectionStaticField.js +4 -2
- package/dist/components/core/form/fields/SolidSelectionStaticField.js.map +1 -1
- package/dist/components/core/list/SolidEmptyListViewPlaceholder.d.ts.map +1 -1
- package/dist/components/core/list/SolidEmptyListViewPlaceholder.js +22 -12
- package/dist/components/core/list/SolidEmptyListViewPlaceholder.js.map +1 -1
- package/dist/components/core/list/SolidListView.js +4 -4
- package/dist/components/core/list/SolidListView.js.map +1 -1
- package/dist/components/layout/user-profile-menu.d.ts.map +1 -1
- package/dist/components/layout/user-profile-menu.js +7 -6
- package/dist/components/layout/user-profile-menu.js.map +1 -1
- package/dist/helpers/registry.js +4 -2
- package/dist/helpers/registry.js.map +1 -1
- package/dist/helpers/updatePasswordField.d.ts +9 -0
- package/dist/helpers/updatePasswordField.d.ts.map +1 -0
- package/dist/helpers/updatePasswordField.js +75 -0
- package/dist/helpers/updatePasswordField.js.map +1 -0
- package/dist/resources/globals.css +5 -3
- package/dist/types/solid-core.d.ts +2 -0
- package/package.json +1 -1
- package/src/resources/globals.css +5 -3
- package/src/types/solid-core.d.ts +2 -0
|
@@ -1486,7 +1486,8 @@ li.header-li-px {
|
|
|
1486
1486
|
padding: 0;
|
|
1487
1487
|
padding-left: 10px;
|
|
1488
1488
|
}
|
|
1489
|
-
|
|
1489
|
+
|
|
1490
|
+
.bg-red-row {
|
|
1490
1491
|
background-color: rgb(243, 43, 43);
|
|
1491
1492
|
}
|
|
1492
1493
|
|
|
@@ -2349,13 +2350,14 @@ li.header-li-px {
|
|
|
2349
2350
|
|
|
2350
2351
|
.solid-logo.in_form_view {
|
|
2351
2352
|
margin-bottom: 30px;
|
|
2353
|
+
justify-content: center;
|
|
2352
2354
|
}
|
|
2353
2355
|
|
|
2354
2356
|
.solid-logo img {
|
|
2355
|
-
width:
|
|
2356
|
-
height: 2.375rem !important;
|
|
2357
|
+
max-width: 350px !important;
|
|
2357
2358
|
}
|
|
2358
2359
|
|
|
2360
|
+
|
|
2359
2361
|
.solid-logo-title {
|
|
2360
2362
|
line-height: 1.3;
|
|
2361
2363
|
font-weight: 700;
|