property-practice-ui 0.4.1 → 0.5.0
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/CHANGELOG.md +12 -0
- package/dist/index.cjs +9 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/molecules.cjs +2 -2
- package/dist/molecules.cjs.map +1 -1
- package/dist/molecules.js +2 -2
- package/dist/molecules.js.map +1 -1
- package/dist/organisms.cjs +25 -3
- package/dist/organisms.cjs.map +1 -1
- package/dist/organisms.js +25 -3
- package/dist/organisms.js.map +1 -1
- package/package.json +1 -1
- package/src/molecules/RadioGroup/RadioGroup.tsx +2 -2
package/dist/molecules.js
CHANGED
|
@@ -1222,7 +1222,7 @@ var Container9 = styled40.div`
|
|
|
1222
1222
|
gap: 1rem;
|
|
1223
1223
|
background-color: #ffffff;
|
|
1224
1224
|
width: 284px;
|
|
1225
|
-
height:
|
|
1225
|
+
height: 100%;
|
|
1226
1226
|
padding: 1.5rem;
|
|
1227
1227
|
border-radius: 8px;
|
|
1228
1228
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
@@ -2221,7 +2221,7 @@ var SideNav = ({
|
|
|
2221
2221
|
}) => {
|
|
2222
2222
|
const renderNavItems = (isMobile) => items.map((item) => {
|
|
2223
2223
|
const isActive = activeItem === item.href;
|
|
2224
|
-
return /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs(NavLink, { href: item.href, $isActive: isActive, children: [
|
|
2224
|
+
return /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs(NavLink, { href: item.href, $isActive: isActive, onClick: onClose, children: [
|
|
2225
2225
|
isActive ? /* @__PURE__ */ jsx(ActiveTriangle, { triangleColor }) : /* @__PURE__ */ jsx(InactiveSpacer, {}),
|
|
2226
2226
|
/* @__PURE__ */ jsx(
|
|
2227
2227
|
TextButton,
|