@conduction/components 2.0.0 → 2.0.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/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  - **Version 2**
6
6
 
7
+ - 2.0.1: Refactor SecondaryTopNav css module import;
7
8
  - 2.0.0: components are now dependent on `--skeleton` design tokens, currently found [here](https://github.com/OpenCatalogi/web-app/blob/development/pwa/src/styling/design-tokens/skeleton-design-tokens.css).
8
9
 
9
10
  - **Version 1**
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import * as styles from "./SecondaryTopnav.module.css";
2
+ import * as styles from "./SecondaryTopNav.module.css";
3
3
  import { Link } from "@gemeente-denhaag/components-react";
4
4
  import clsx from "clsx";
5
5
  export const SecondaryTopNav = ({ items, layoutClassName }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as styles from "./SecondaryTopnav.module.css";
2
+ import * as styles from "./SecondaryTopNav.module.css";
3
3
  import { Link } from "@gemeente-denhaag/components-react";
4
4
  import clsx from "clsx";
5
5