@ceed/ads 1.2.6 → 1.2.7

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.
@@ -58,6 +58,7 @@ declare function Accordions(props: {
58
58
  items: {
59
59
  summary: React.ReactNode;
60
60
  details: React.ReactNode;
61
+ defaultExpanded?: boolean;
61
62
  }[];
62
63
  } & React.ComponentProps<typeof MotionAccordions>): React.JSX.Element;
63
64
  declare namespace Accordions {
package/dist/index.cjs CHANGED
@@ -284,7 +284,8 @@ function Accordions(props) {
284
284
  details: item.details,
285
285
  index,
286
286
  variant,
287
- color
287
+ color,
288
+ defaultExpanded: item.defaultExpanded
288
289
  }
289
290
  )));
290
291
  }
package/dist/index.js CHANGED
@@ -182,7 +182,8 @@ function Accordions(props) {
182
182
  details: item.details,
183
183
  index,
184
184
  variant,
185
- color
185
+ color,
186
+ defaultExpanded: item.defaultExpanded
186
187
  }
187
188
  )));
188
189
  }