@norwegian/core-components 5.18.2 → 5.18.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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@norwegian/core-components",
3
- "version": "5.18.2",
3
+ "version": "5.18.3",
4
4
  "peerDependencies": {
5
- "@angular/common": ">=12.0.0 < 16.0.0",
6
- "@angular/core": ">=12.0.0 < 16.0.0"
5
+ "@angular/common": ">=12.0.0 < 17.0.0",
6
+ "@angular/core": ">=12.0.0 < 17.0.0"
7
7
  },
8
8
  "dependencies": {
9
- "tslib": "^2.3.0"
9
+ "tslib": "^2.5.0"
10
10
  },
11
11
  "module": "fesm2015/norwegian-core-components.mjs",
12
12
  "es2020": "fesm2020/norwegian-core-components.mjs",
@@ -1,99 +1,70 @@
1
1
  $import-fonts: (
2
- TiemposText: (
3
- 'Tiempos',
2
+ TiemposText: ('Tiempos',
4
3
  'TiemposTextWeb-Regular',
5
4
  normal,
6
- normal
7
- ),
8
- TiemposText-Italic: (
9
- 'Tiempos',
5
+ normal),
6
+ TiemposText-Italic: ('Tiempos',
10
7
  'TiemposTextWeb-Italic',
11
8
  normal,
12
- italic
13
- ),
14
- TiemposText-Bold: (
15
- 'Tiempos',
9
+ italic),
10
+ TiemposText-Bold: ('Tiempos',
16
11
  'TiemposHeadlineWeb-Bold',
17
12
  bold,
18
- normal
19
- ),
20
- TiemposText-Medium: (
21
- 'Tiempos',
13
+ normal),
14
+ TiemposText-Medium: ('Tiempos',
22
15
  'TiemposText-Medium',
23
16
  600,
24
- normal
25
- ),
26
- TiemposText-BoldItalic: (
27
- 'Tiempos',
17
+ normal),
18
+ TiemposText-BoldItalic: ('Tiempos',
28
19
  'TiemposHeadlineWeb-BoldItalic',
29
20
  bold,
30
- italic
31
- ),
32
- ApercuProRegular: (
33
- 'Apercu',
21
+ italic),
22
+ ApercuProRegular: ('Apercu',
34
23
  'apercu_regular_pro-web',
35
24
  normal,
36
- normal
37
- ),
38
- ApercuPro-Italic: (
39
- 'Apercu',
25
+ normal),
26
+ ApercuPro-Italic: ('Apercu',
40
27
  'apercu_regular_italic_pro-web',
41
28
  normal,
42
- italic
43
- ),
44
- ApercuProLight: (
45
- 'Apercu',
29
+ italic),
30
+ ApercuProLight: ('Apercu',
46
31
  'apercu_light_pro-web',
47
32
  300,
48
- normal
49
- ),
50
- ApercuProLight-Italic: (
51
- 'Apercu',
33
+ normal),
34
+ ApercuProLight-Italic: ('Apercu',
52
35
  'apercu_light_italic_pro-web',
53
36
  300,
54
- italic
55
- ),
56
- ApercuProMedium: (
57
- 'Apercu',
37
+ italic),
38
+ ApercuProMedium: ('Apercu',
58
39
  'apercu_medium_pro-web',
59
40
  600,
60
- normal
61
- ),
62
- ApercuProMedium-Italic: (
63
- 'Apercu',
41
+ normal),
42
+ ApercuProMedium-Italic: ('Apercu',
64
43
  'apercu_medium_italic_pro-web',
65
44
  600,
66
- italic
67
- ),
68
- ApercuProBold: (
69
- 'Apercu',
45
+ italic),
46
+ ApercuProBold: ('Apercu',
70
47
  'apercu_bold_pro-web',
71
48
  bold,
72
- normal
73
- ),
74
- ApercuProBold-Italic: (
75
- 'Apercu',
49
+ normal),
50
+ ApercuProBold-Italic: ('Apercu',
76
51
  'apercu_bold_italic_pro-web',
77
52
  bold,
78
- italic
79
- ),
80
- ApercuProMono: (
81
- 'ApercuMono',
53
+ italic),
54
+ ApercuProMono: ('ApercuMono',
82
55
  'apercu_mono_pro-web',
83
56
  normal,
84
- normal
85
- ),
57
+ normal),
86
58
  );
87
59
 
88
- @each $key, $value in $import-fonts {
60
+ @each $key,
61
+ $value in $import-fonts {
89
62
  @font-face {
90
63
  font-family: '#{nth($value, 1)}';
91
64
  font-style: nth($value, 4);
92
65
  font-weight: nth($value, 3);
93
66
  font-display: fallback;
94
67
  src: url('~@norwegian/core-components/assets/fonts/#{nth($value, 2)}.woff2') format('woff2'),
95
- url('~@norwegian/core-components/assets/fonts/#{nth($value, 2)}.woff') format('woff');
96
-
97
-
68
+ url('~@norwegian/core-components/assets/fonts/#{nth($value, 2)}.woff') format('woff');
98
69
  }
99
- }
70
+ }