@vygruppen/spor-react 12.4.8 → 12.4.9
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/.turbo/turbo-build.log +10 -10
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/accordion/Accordion.tsx +12 -5
- package/src/accordion/types.ts +1 -0
- package/src/input/SearchInput.tsx +1 -1
- package/src/logo/VyLogo.tsx +3 -3
- package/src/logo/VyLogoPride.tsx +2 -3
- package/src/theme/recipes/input.ts +1 -0
package/dist/index.mjs
CHANGED
@@ -73,7 +73,13 @@ var Accordion = forwardRef(
|
|
73
73
|
}
|
74
74
|
);
|
75
75
|
var AccordionItemTrigger = forwardRef(function AccordionItemTrigger2(props, ref) {
|
76
|
-
const {
|
76
|
+
const {
|
77
|
+
startElement,
|
78
|
+
children,
|
79
|
+
headingLevel,
|
80
|
+
showChevron = true,
|
81
|
+
...rest
|
82
|
+
} = props;
|
77
83
|
warnAboutMismatchingIcon({ icon: startElement });
|
78
84
|
const recipe = useSlotRecipe({ key: "accordion" });
|
79
85
|
const styles = recipe();
|
@@ -82,7 +88,7 @@ var AccordionItemTrigger = forwardRef(function AccordionItemTrigger2(props, ref)
|
|
82
88
|
startElement && startElement,
|
83
89
|
children
|
84
90
|
] }),
|
85
|
-
/* @__PURE__ */ jsx(Accordion$1.ItemIndicator, { children: /* @__PURE__ */ jsx(DropdownDownFill24Icon, {}) })
|
91
|
+
showChevron && /* @__PURE__ */ jsx(Accordion$1.ItemIndicator, { children: /* @__PURE__ */ jsx(DropdownDownFill24Icon, {}) })
|
86
92
|
] }) });
|
87
93
|
});
|
88
94
|
var AccordionItemContent = forwardRef(function AccordionItemContent2(props, ref) {
|
@@ -3326,6 +3332,7 @@ var inputRecipe = defineRecipe({
|
|
3326
3332
|
borderRadius: "sm",
|
3327
3333
|
transitionProperty: "common",
|
3328
3334
|
transitionDuration: "fast",
|
3335
|
+
color: "text",
|
3329
3336
|
position: "relative",
|
3330
3337
|
paddingX: 3,
|
3331
3338
|
paddingTop: 3,
|
@@ -4153,7 +4160,7 @@ var SearchInput = forwardRef(
|
|
4153
4160
|
type: "search",
|
4154
4161
|
variant,
|
4155
4162
|
...props,
|
4156
|
-
startElement: /* @__PURE__ */ jsx(SearchOutline24Icon, {}),
|
4163
|
+
startElement: /* @__PURE__ */ jsx(SearchOutline24Icon, { color: "icon" }),
|
4157
4164
|
endElement: clearButton && /* @__PURE__ */ jsx(
|
4158
4165
|
IconButton,
|
4159
4166
|
{
|