@oslokommune/punkt-react 11.9.4 → 11.10.0

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,43 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [11.10.0](https://github.com/oslokommune/punkt/compare/11.9.5...11.10.0) (2024-03-18)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ * Ny loader-variant (#1591).
15
+
16
+
17
+ ### Bug Fixes
18
+ Ingen
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
26
+ ## [11.10.0](https://github.com/oslokommune/punkt/compare/11.9.4...11.10.0) (2024-03-15)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+ Ingen
30
+
31
+ ### Features
32
+ * Bruk className-property til header utvidbar.
33
+
34
+
35
+ ### Bug Fixes
36
+ * Bruk className-property til header utvidbar (#1587).
37
+
38
+
39
+ ### Chores
40
+ Ingen
41
+
42
+ ---
43
+
44
+
8
45
  ## [11.9.3](https://github.com/oslokommune/punkt/compare/11.9.2...11.9.3) (2024-03-14)
9
46
 
10
47
  ### ⚠ BREAKING CHANGES
@@ -1,4 +1,4 @@
1
1
  import { IconFetcher } from './IconContext';
2
- export declare const defaultSvgPath = "https://punkt-cdn.oslo.kommune.no/11.9/icons/";
2
+ export declare const defaultSvgPath = "https://punkt-cdn.oslo.kommune.no/11.10/icons/";
3
3
  declare const defaultIconFetcher: IconFetcher;
4
4
  export default defaultIconFetcher;
@@ -15,7 +15,7 @@ export interface IPktLoader extends HTMLAttributes<HTMLDivElement> {
15
15
  * Variants available are "blue" spinner, "rainbow" spinner and
16
16
  * "shapes" oslo wave loader. Default is rainbow.
17
17
  */
18
- variant?: 'blue' | 'rainbow' | 'shapes';
18
+ variant?: 'blue' | 'rainbow' | 'shapes' | '🐣';
19
19
  /**
20
20
  * The `delay` prop controls how much time the loading should be given before the loader is displayed.
21
21
  * This is handy for situations where the load time might be so short that loader is not necessary.