@rolster/react-components 18.15.6 → 18.15.8
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/cjs/assets/{index-Bi1j_H-P.css → index-6EQEC0IJ.css} +6 -3
- package/dist/cjs/index.js +6 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/assets/{index-Bi1j_H-P.css → index-6EQEC0IJ.css} +6 -3
- package/dist/es/index.js +6 -2
- package/dist/es/index.js.map +1 -1
- package/dist/esm/components/molecules/FieldPassword/FieldPassword.css +6 -3
- package/dist/esm/context.d.ts +3 -2
- package/dist/esm/context.js +9 -4
- package/dist/esm/context.js.map +1 -1
- package/package.json +5 -5
|
@@ -1029,14 +1029,17 @@
|
|
|
1029
1029
|
|
|
1030
1030
|
.rls-field-password {
|
|
1031
1031
|
--rlc-fieldbox-body-padding: var(--rls-sizing-x3) var(--rls-sizing-x4);
|
|
1032
|
-
--rlc-action-ripple-dimension: var(--rls-sizing-
|
|
1033
|
-
--rlc-action-ripple-position: -
|
|
1032
|
+
--rlc-action-ripple-dimension: var(--rls-sizing-x12);
|
|
1033
|
+
--rlc-action-ripple-position: -6rem;
|
|
1034
1034
|
position: relative;
|
|
1035
1035
|
width: 100%;
|
|
1036
1036
|
box-sizing: border-box;
|
|
1037
1037
|
}
|
|
1038
1038
|
.rls-field-password .rls-button-action {
|
|
1039
|
-
|
|
1039
|
+
padding: 0rem;
|
|
1040
|
+
width: var(--rls-sizing-x12);
|
|
1041
|
+
height: var(--rls-sizing-x12);
|
|
1042
|
+
z-index: 2;
|
|
1040
1043
|
}
|
|
1041
1044
|
|
|
1042
1045
|
.rls-field-text {
|
package/dist/cjs/index.js
CHANGED
|
@@ -2718,12 +2718,16 @@ const RlsContext = require$$0.createContext({
|
|
|
2718
2718
|
confirmation: () => {
|
|
2719
2719
|
return Promise.resolve(ConfirmationResult.approved());
|
|
2720
2720
|
},
|
|
2721
|
-
snackbar: () => { }
|
|
2721
|
+
snackbar: () => { },
|
|
2722
|
+
withNavbar: () => { }
|
|
2722
2723
|
});
|
|
2723
2724
|
function RlsApplication({ children }) {
|
|
2724
2725
|
const { RlsConfirmation, confirmation } = useConfirmationService();
|
|
2725
2726
|
const { RlsSnackbar, snackbar } = useSnackbarService();
|
|
2726
|
-
|
|
2727
|
+
const [currentWithNavbar, withNavbar] = require$$0.useState(false);
|
|
2728
|
+
return (jsxRuntimeExports.jsxs(RlsContext.Provider, { value: { confirmation, snackbar, withNavbar }, children: [jsxRuntimeExports.jsxs("div", { className: renderClassStatus('rls-app__body', {
|
|
2729
|
+
snackbar: currentWithNavbar
|
|
2730
|
+
}), children: [children, RlsSnackbar] }), RlsConfirmation] }));
|
|
2727
2731
|
}
|
|
2728
2732
|
|
|
2729
2733
|
exports.ConfirmationResult = ConfirmationResult;
|