hr-design-system-handlebars 1.114.18 → 1.114.19

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
@@ -1,3 +1,15 @@
1
+ # v1.114.19 (Wed Nov 20 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - SEO - WOFF2 Fonts [#1168](https://github.com/mumprod/hr-design-system-handlebars/pull/1168) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.114.18 (Wed Nov 20 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -459,7 +459,8 @@ video {
459
459
  @font-face {
460
460
  font-family: 'DIN';
461
461
  font-display: auto;
462
- src: url('fonts/DINPro.woff');
462
+ src: url('fonts/DINPro.woff2') format('woff2'),
463
+ url('fonts/DINPro.woff') format('woff');
463
464
  font-weight: 400;
464
465
  font-style: normal;
465
466
  font-stretch: normal;
@@ -467,7 +468,8 @@ video {
467
468
  @font-face {
468
469
  font-family: 'DIN';
469
470
  font-display: auto;
470
- src: url('fonts/DINPro-Bold.woff');
471
+ src: url('fonts/DINPro-Bold.woff2') format('woff2'),
472
+ url('fonts/DINPro-Bold.woff') format('woff');
471
473
  font-weight: 700;
472
474
  font-style: normal;
473
475
  font-stretch: normal;
@@ -475,7 +477,8 @@ video {
475
477
  @font-face {
476
478
  font-family: 'RobotoSlab';
477
479
  font-display: auto;
478
- src: url('fonts/RobotoSlabbed.woff');
480
+ src: url('fonts/RobotoSlabbed.woff2') format('woff2'),
481
+ url('fonts/RobotoSlabbed.woff') format('woff');
479
482
  font-weight: 400;
480
483
  font-style: normal;
481
484
  font-stretch: normal;
@@ -483,7 +486,8 @@ video {
483
486
  @font-face {
484
487
  font-family: 'RobotoCond';
485
488
  font-display: auto;
486
- src: url('fonts/RobotoCondensed.woff');
489
+ src: url('fonts/RobotoCondensed.woff2') format('woff2'),
490
+ url('fonts/RobotoCondensed.woff') format('woff');
487
491
  font-weight: 400;
488
492
  font-style: normal;
489
493
  font-stretch: condensed;
@@ -491,7 +495,8 @@ video {
491
495
  @font-face {
492
496
  font-family: 'RobotoCond';
493
497
  font-display: auto;
494
- src: url('fonts/RobotoCondensed-Bold.woff');
498
+ src: url('fonts/RobotoCondensed-Bold.woff2') format('woff2'),
499
+ url('fonts/RobotoCondensed-Bold.woff') format('woff');
495
500
  font-weight: 700;
496
501
  font-style: normal;
497
502
  font-stretch: condensed;
@@ -3681,7 +3686,7 @@ article.indexTextDS .indexTextHighlighted .link {
3681
3686
  border-bottom-color: var(--color-secondary-ds);
3682
3687
  }
3683
3688
  .counter-reset {
3684
- counter-reset: cnt1732095440747;
3689
+ counter-reset: cnt1732108673100;
3685
3690
  }
3686
3691
  .placeholder-text-xs::-webkit-input-placeholder {
3687
3692
  font-size: 0.75rem;
@@ -4095,7 +4100,7 @@ article.indexTextDS .indexTextHighlighted .link {
4095
4100
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4096
4101
  }
4097
4102
  .-ordered {
4098
- counter-increment: cnt1732095440747 1;
4103
+ counter-increment: cnt1732108673100 1;
4099
4104
  }
4100
4105
  .-ordered::before {
4101
4106
  position: absolute;
@@ -4113,7 +4118,7 @@ article.indexTextDS .indexTextHighlighted .link {
4113
4118
  --tw-text-opacity: 1;
4114
4119
  color: rgba(0, 0, 0, 1);
4115
4120
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4116
- content: counter(cnt1732095440747);
4121
+ content: counter(cnt1732108673100);
4117
4122
  }
4118
4123
  /*! ****************************/
4119
4124
  /*! DataPolicy stuff */
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/szuelch/hr-design-system-handlebars",
9
- "version": "1.114.18",
9
+ "version": "1.114.19",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -5,7 +5,8 @@
5
5
  @font-face {
6
6
  font-family: 'DIN';
7
7
  font-display: auto;
8
- src: url('fonts/DINPro.woff');
8
+ src: url('fonts/DINPro.woff2') format('woff2'),
9
+ url('fonts/DINPro.woff') format('woff');
9
10
  font-weight: 400;
10
11
  font-style: normal;
11
12
  font-stretch: normal;
@@ -13,7 +14,8 @@
13
14
  @font-face {
14
15
  font-family: 'DIN';
15
16
  font-display: auto;
16
- src: url('fonts/DINPro-Bold.woff');
17
+ src: url('fonts/DINPro-Bold.woff2') format('woff2'),
18
+ url('fonts/DINPro-Bold.woff') format('woff');
17
19
  font-weight: 700;
18
20
  font-style: normal;
19
21
  font-stretch: normal;
@@ -21,7 +23,8 @@
21
23
  @font-face {
22
24
  font-family: 'RobotoSlab';
23
25
  font-display: auto;
24
- src: url('fonts/RobotoSlabbed.woff');
26
+ src: url('fonts/RobotoSlabbed.woff2') format('woff2'),
27
+ url('fonts/RobotoSlabbed.woff') format('woff');
25
28
  font-weight: 400;
26
29
  font-style: normal;
27
30
  font-stretch: normal;
@@ -29,7 +32,8 @@
29
32
  @font-face {
30
33
  font-family: 'RobotoCond';
31
34
  font-display: auto;
32
- src: url('fonts/RobotoCondensed.woff');
35
+ src: url('fonts/RobotoCondensed.woff2') format('woff2'),
36
+ url('fonts/RobotoCondensed.woff') format('woff');
33
37
  font-weight: 400;
34
38
  font-style: normal;
35
39
  font-stretch: condensed;
@@ -37,7 +41,8 @@
37
41
  @font-face {
38
42
  font-family: 'RobotoCond';
39
43
  font-display: auto;
40
- src: url('fonts/RobotoCondensed-Bold.woff');
44
+ src: url('fonts/RobotoCondensed-Bold.woff2') format('woff2'),
45
+ url('fonts/RobotoCondensed-Bold.woff') format('woff');
41
46
  font-weight: 700;
42
47
  font-style: normal;
43
48
  font-stretch: condensed;
Binary file