hr-design-system-handlebars 1.114.38 → 1.114.40

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,27 @@
1
+ # v1.114.40 (Wed Dec 11 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - adds rule for commentsList [#1189](https://github.com/mumprod/hr-design-system-handlebars/pull/1189) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
13
+ # v1.114.39 (Wed Dec 11 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - some small fixes [#1188](https://github.com/mumprod/hr-design-system-handlebars/pull/1188) ([@StefanVesper](https://github.com/StefanVesper))
18
+
19
+ #### Authors: 1
20
+
21
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
22
+
23
+ ---
24
+
1
25
  # v1.114.38 (Wed Dec 11 2024)
2
26
 
3
27
  #### 🐛 Bug Fix
@@ -1016,9 +1016,17 @@ article.indexTextDS .indexTextHighlighted .link {
1016
1016
  text-decoration-thickness: 1px;
1017
1017
  }
1018
1018
  /* -----------------------------COPYTEXT ---------------------------- */
1019
+ article #commentsList {
1020
+ scroll-margin-top: 117px;
1021
+ }
1022
+ @media (min-width: 768px) {
1023
+
1024
+ article #commentsList {
1025
+ scroll-margin-top: 128px;
1026
+ }
1027
+ }
1019
1028
  .hrds-copytext a[name] {
1020
1029
  scroll-margin-top: 117px;
1021
- scroll-behavior: smooth;
1022
1030
  }
1023
1031
  @media (min-width: 768px) {
1024
1032
 
@@ -2099,9 +2107,6 @@ article.indexTextDS .indexTextHighlighted .link {
2099
2107
  .scroll-mt-\[117px\] {
2100
2108
  scroll-margin-top: 117px;
2101
2109
  }
2102
- .scroll-mt-\[128px\] {
2103
- scroll-margin-top: 128px;
2104
- }
2105
2110
  .list-decimal {
2106
2111
  list-style-type: decimal;
2107
2112
  }
@@ -3705,8 +3710,9 @@ article.indexTextDS .indexTextHighlighted .link {
3705
3710
  border-bottom-color: var(--color-secondary-ds);
3706
3711
  }
3707
3712
  .counter-reset {
3708
- counter-reset: cnt1733918153852;
3713
+ counter-reset: cnt1733923006806;
3709
3714
  }
3715
+ html { scroll-behavior: smooth; }
3710
3716
  .placeholder-text-xs::-webkit-input-placeholder {
3711
3717
  font-size: 0.75rem;
3712
3718
  line-height: 1.0625rem;
@@ -4119,7 +4125,7 @@ article.indexTextDS .indexTextHighlighted .link {
4119
4125
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4120
4126
  }
4121
4127
  .-ordered {
4122
- counter-increment: cnt1733918153852 1;
4128
+ counter-increment: cnt1733923006806 1;
4123
4129
  }
4124
4130
  .-ordered::before {
4125
4131
  position: absolute;
@@ -4137,7 +4143,7 @@ article.indexTextDS .indexTextHighlighted .link {
4137
4143
  --tw-text-opacity: 1;
4138
4144
  color: rgba(0, 0, 0, 1);
4139
4145
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4140
- content: counter(cnt1733918153852);
4146
+ content: counter(cnt1733923006806);
4141
4147
  }
4142
4148
  /*! ****************************/
4143
4149
  /*! DataPolicy stuff */
@@ -7420,6 +7426,10 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
7420
7426
  flex-basis: 100%;
7421
7427
  }
7422
7428
 
7429
+ .md\:scroll-mt-\[128px\] {
7430
+ scroll-margin-top: 128px;
7431
+ }
7432
+
7423
7433
  .md\:flex-row {
7424
7434
  flex-direction: row;
7425
7435
  }
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.38",
9
+ "version": "1.114.40",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -310,10 +310,15 @@ article.indexTextDS .indexTextHighlighted .link {
310
310
  }
311
311
 
312
312
  /* -----------------------------COPYTEXT ---------------------------- */
313
+
314
+ article #commentsList {
315
+ @apply scroll-mt-[117px] md:scroll-mt-[128px];
316
+ }
313
317
  .hrds-copytext {
314
318
  a[name] {
315
- @apply scroll-mt-[117px] md:scroll-mt-[128px] scroll-smooth;
319
+ @apply scroll-mt-[117px] md:scroll-mt-[128px];
316
320
  }
321
+
317
322
  &__link {
318
323
  @apply underline text-link decoration-1 hover:decoration-1 dark:text-link-dark ds-link;
319
324
  }
@@ -1,4 +1,6 @@
1
1
  @layer utilities {
2
+ html { scroll-behavior: smooth; }
3
+
2
4
  .placeholder-text-xs::placeholder {
3
5
  @apply text-xs;
4
6
  }
@@ -8,7 +8,7 @@ module.exports = {
8
8
  experimental: {
9
9
  optimizeUniversalDefaults: true,
10
10
  },
11
- safelist: ['mt-12', 'bg-gray-100', '-weather_warning', 'scroll-smooth', 'scroll-mt-[128px]', 'scroll-mt-[117px]'],
11
+ safelist: ['mt-12', 'bg-gray-100', '-weather_warning', 'scroll-smooth', 'md:scroll-mt-[128px]', 'scroll-mt-[117px]'],
12
12
  content: [
13
13
  './src/stories/*.mdx',
14
14
  './src/stories/views/**/*.{mdx,hbs,js,json}',