@oslokommune/punkt-react 9.3.0 → 9.3.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/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [9.3.3](https://github.com/oslokommune/punkt/compare/9.3.2...9.3.3) (2023-11-01)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * [1283](https://github.com/oslokommune/punkt/issues/1283) Endre import-linje til å ikke bruke '@' (#1284).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
8
26
  ## [9.3.0](https://github.com/oslokommune/punkt/compare/9.2.10...9.3.0) (2023-10-19)
9
27
 
10
28
  ### ⚠ BREAKING CHANGES
@@ -1,4 +1,4 @@
1
- import { IconFetcher } from '../../components/icon/IconContext';
1
+ import { IconFetcher } from "./IconContext";
2
2
  export declare const defaultSvgPath = "https://punkt-cdn.oslo.kommune.no/9.3/icons/";
3
3
  declare const defaultIconFetcher: IconFetcher;
4
4
  export default defaultIconFetcher;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oslokommune/punkt-react",
3
- "version": "9.3.0",
3
+ "version": "9.3.3",
4
4
  "description": "React komponentbibliotek til Punkt, et designsystem laget av Oslo Origo",
5
5
  "homepage": "https://punkt.oslo.kommune.no",
6
6
  "author": "Team Designsystem, Oslo Origo",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@oslokommune/punkt-assets": "^9.2.2",
36
- "@oslokommune/punkt-css": "^9.2.6",
36
+ "@oslokommune/punkt-css": "^9.3.2",
37
37
  "@testing-library/jest-dom": "^5.16.5",
38
38
  "@testing-library/react": "^14.0.0",
39
39
  "@testing-library/user-event": "^14.4.3",
@@ -91,5 +91,5 @@
91
91
  "url": "https://github.com/oslokommune/punkt/issues"
92
92
  },
93
93
  "license": "MIT",
94
- "gitHead": "82c3a7e9c7ce515cb86d732bfaa3783c803a623d"
94
+ "gitHead": "e8508eddc7b1498e2e8b806a90d63fb48dc79975"
95
95
  }
@@ -1,4 +1,4 @@
1
- import { IconFetcher } from "@/components/icon/IconContext";
1
+ import { IconFetcher } from "./IconContext";
2
2
 
3
3
  // Cache is a dictionary of promises that each resolves to an svg icon
4
4
  const iconCache: { [name: string]: Promise<string> } = {}