plainframe-ui 0.1.1 → 0.1.3
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/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1222,7 +1222,7 @@ var AccordionGroup = ({
|
|
|
1222
1222
|
borderBottomLeftRadius: isLast ? radius2 : 0,
|
|
1223
1223
|
borderBottomRightRadius: isLast ? radius2 : 0
|
|
1224
1224
|
}) : css5({ width: "100%", marginBottom: 0 });
|
|
1225
|
-
const separatorCss = !isFirst && count > 1 ? css5({
|
|
1225
|
+
const separatorCss = !isFirst && count > 1 && attached ? css5({
|
|
1226
1226
|
borderTop: `${bw} solid ${borderColor}`
|
|
1227
1227
|
}) : null;
|
|
1228
1228
|
const killChildOutline = isOutlined ? css5({
|
|
@@ -1230,7 +1230,6 @@ var AccordionGroup = ({
|
|
|
1230
1230
|
borderRight: "0 !important",
|
|
1231
1231
|
borderBottom: "0 !important",
|
|
1232
1232
|
outline: "0 !important"
|
|
1233
|
-
// do not touch borderTop – that’s our separator
|
|
1234
1233
|
}) : null;
|
|
1235
1234
|
const injected = {
|
|
1236
1235
|
variant: nextVariant,
|
|
@@ -2251,7 +2250,7 @@ var SubMenuTrigger = ({ children, chevron, asChild = true }) => {
|
|
|
2251
2250
|
transition: "transform 300ms cubic-bezier(.6,1.3,.5,1)",
|
|
2252
2251
|
"& > svg": { width: 16, height: 16, display: "block" }
|
|
2253
2252
|
});
|
|
2254
|
-
const ChevronNode = /* @__PURE__ */ jsx9("span", { className: "pfui-submenu-chevron", css: chevronCss, "aria-hidden": true, children: chevron ?? /* @__PURE__ */ jsx9(ChevronDown2, { strokeWidth: 2.
|
|
2253
|
+
const ChevronNode = /* @__PURE__ */ jsx9("span", { className: "pfui-submenu-chevron", css: chevronCss, "aria-hidden": true, children: chevron ?? /* @__PURE__ */ jsx9(ChevronDown2, { strokeWidth: 2.5 }) });
|
|
2255
2254
|
const inject = (el) => cloneElement4(el, {
|
|
2256
2255
|
...el.props,
|
|
2257
2256
|
"data-subtrigger": "",
|