@theroutingcompany/components 0.0.39-alpha.1 → 0.0.40-alpha.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/dist/trc-components.es.js +5 -4
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +3 -2
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/Accordion/Accordion.d.ts +8 -7
- package/types/components/Text/Text.d.ts +2 -2
|
@@ -2916,7 +2916,7 @@ const TP = Be`
|
|
|
2916
2916
|
flex-direction: row;
|
|
2917
2917
|
gap: ${f.spacing_200};
|
|
2918
2918
|
align-items: center;
|
|
2919
|
-
margin-bottom: ${f.spacing_200}
|
|
2919
|
+
margin-bottom: ${f.spacing_200};
|
|
2920
2920
|
width: 100%;
|
|
2921
2921
|
|
|
2922
2922
|
&[data-state='open'] {
|
|
@@ -2963,12 +2963,13 @@ const TP = Be`
|
|
|
2963
2963
|
font-weight: 500;
|
|
2964
2964
|
color: ${f.color_gray_6};
|
|
2965
2965
|
cursor: pointer;
|
|
2966
|
+
width: calc(100% - ${f.spacing_400});
|
|
2966
2967
|
`;
|
|
2967
|
-
function MP({ children: e, icon: t }) {
|
|
2968
|
-
return /* @__PURE__ */ x(KS, { asChild: !0, children: /* @__PURE__ */ ie(RP, { children: [
|
|
2968
|
+
function MP({ children: e, icon: t, ...r }) {
|
|
2969
|
+
return /* @__PURE__ */ x(KS, { asChild: !0, children: /* @__PURE__ */ ie(RP, { ...r, children: [
|
|
2969
2970
|
t ? /* @__PURE__ */ x(IP, { mr: f.spacing_200, children: t }) : null,
|
|
2970
2971
|
/* @__PURE__ */ x(OP, { children: e }),
|
|
2971
|
-
/* @__PURE__ */ x(ar, { flex: "1", alignItems: "center", cursor: "pointer", className: "chev", children: /* @__PURE__ */ x(AP, {}) })
|
|
2972
|
+
/* @__PURE__ */ x(ar, { flex: "1", alignItems: "center", cursor: "pointer", className: "chev", width: f.spacing_400, children: /* @__PURE__ */ x(AP, {}) })
|
|
2972
2973
|
] }) });
|
|
2973
2974
|
}
|
|
2974
2975
|
const NP = C(VS)`
|