hr-design-system-handlebars 1.114.38 → 1.114.39

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.39 (Wed Dec 11 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - some small fixes [#1188](https://github.com/mumprod/hr-design-system-handlebars/pull/1188) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
1
13
  # v1.114.38 (Wed Dec 11 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -2099,9 +2099,6 @@ article.indexTextDS .indexTextHighlighted .link {
2099
2099
  .scroll-mt-\[117px\] {
2100
2100
  scroll-margin-top: 117px;
2101
2101
  }
2102
- .scroll-mt-\[128px\] {
2103
- scroll-margin-top: 128px;
2104
- }
2105
2102
  .list-decimal {
2106
2103
  list-style-type: decimal;
2107
2104
  }
@@ -3705,8 +3702,9 @@ article.indexTextDS .indexTextHighlighted .link {
3705
3702
  border-bottom-color: var(--color-secondary-ds);
3706
3703
  }
3707
3704
  .counter-reset {
3708
- counter-reset: cnt1733918153852;
3705
+ counter-reset: cnt1733921285188;
3709
3706
  }
3707
+ html { scroll-behavior: smooth; }
3710
3708
  .placeholder-text-xs::-webkit-input-placeholder {
3711
3709
  font-size: 0.75rem;
3712
3710
  line-height: 1.0625rem;
@@ -4119,7 +4117,7 @@ article.indexTextDS .indexTextHighlighted .link {
4119
4117
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4120
4118
  }
4121
4119
  .-ordered {
4122
- counter-increment: cnt1733918153852 1;
4120
+ counter-increment: cnt1733921285188 1;
4123
4121
  }
4124
4122
  .-ordered::before {
4125
4123
  position: absolute;
@@ -4137,7 +4135,7 @@ article.indexTextDS .indexTextHighlighted .link {
4137
4135
  --tw-text-opacity: 1;
4138
4136
  color: rgba(0, 0, 0, 1);
4139
4137
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4140
- content: counter(cnt1733918153852);
4138
+ content: counter(cnt1733921285188);
4141
4139
  }
4142
4140
  /*! ****************************/
4143
4141
  /*! DataPolicy stuff */
@@ -7420,6 +7418,10 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
7420
7418
  flex-basis: 100%;
7421
7419
  }
7422
7420
 
7421
+ .md\:scroll-mt-\[128px\] {
7422
+ scroll-margin-top: 128px;
7423
+ }
7424
+
7423
7425
  .md\:flex-row {
7424
7426
  flex-direction: row;
7425
7427
  }
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.39",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -314,6 +314,7 @@ article.indexTextDS .indexTextHighlighted .link {
314
314
  a[name] {
315
315
  @apply scroll-mt-[117px] md:scroll-mt-[128px] scroll-smooth;
316
316
  }
317
+
317
318
  &__link {
318
319
  @apply underline text-link decoration-1 hover:decoration-1 dark:text-link-dark ds-link;
319
320
  }
@@ -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}',