@atom-learning/components 9.0.0-beta.4 → 9.0.0-beta.5

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.cjs.js CHANGED
@@ -2180,7 +2180,7 @@ var BannerSlimActions = ({ children, ...rest }) => {
2180
2180
  BannerSlimActions.displayName = "BannerSlimActions";
2181
2181
  //#endregion
2182
2182
  //#region src/components/banner/banner-slim/BannerSlimButton.tsx
2183
- var BannerSlimButton = ({ className, ...rest }) => {
2183
+ var BannerSlimButton = (({ className, ...rest }) => {
2184
2184
  const { emphasis, size } = useBannerContext();
2185
2185
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Button, {
2186
2186
  size: "md",
@@ -2189,7 +2189,7 @@ var BannerSlimButton = ({ className, ...rest }) => {
2189
2189
  ...rest,
2190
2190
  className: cn("ml-auto", className)
2191
2191
  });
2192
- };
2192
+ });
2193
2193
  BannerSlimButton.displayName = "BannerSlimButton";
2194
2194
  //#endregion
2195
2195
  //#region src/components/banner/banner-slim/BannerSlimContainer.tsx
@@ -9178,7 +9178,7 @@ var StyledTile = styled("div", {
9178
9178
  diffused: { true: ["supports-color-mix:bg-[color-mix(in_hsl,(--base-1)_70%,transparent)]", "supports-color-mix:backdrop-blur-sm"] }
9179
9179
  }
9180
9180
  }, { enableResponsiveVariants: true });
9181
- var Tile = ({ ref, children, borderRadius = "lg", colorScheme = {}, ...rest }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ColorScheme, {
9181
+ var Tile = (({ ref, children, borderRadius = "lg", colorScheme = {}, ...rest }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ColorScheme, {
9182
9182
  asChild: true,
9183
9183
  base: "grey1",
9184
9184
  accent: "primary2",
@@ -9190,7 +9190,7 @@ var Tile = ({ ref, children, borderRadius = "lg", colorScheme = {}, ...rest }) =
9190
9190
  ...rest,
9191
9191
  children
9192
9192
  })
9193
- });
9193
+ }));
9194
9194
  //#endregion
9195
9195
  //#region src/components/skeleton-loader/SkeletonTabs.tsx
9196
9196
  var SkeletonTabs = ({ numberOfTabs, className, tabClassName }) => /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Tile, {