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