hr-design-system-handlebars 1.114.37 → 1.114.38
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 +12 -0
- package/dist/assets/index.css +13 -3
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.114.38 (Wed Dec 11 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- adds new rule for anchor destinations [#1187](https://github.com/mumprod/hr-design-system-handlebars/pull/1187) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.114.37 (Tue Dec 10 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1016,6 +1016,16 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
1016
1016
|
text-decoration-thickness: 1px;
|
|
1017
1017
|
}
|
|
1018
1018
|
/* -----------------------------COPYTEXT ---------------------------- */
|
|
1019
|
+
.hrds-copytext a[name] {
|
|
1020
|
+
scroll-margin-top: 117px;
|
|
1021
|
+
scroll-behavior: smooth;
|
|
1022
|
+
}
|
|
1023
|
+
@media (min-width: 768px) {
|
|
1024
|
+
|
|
1025
|
+
.hrds-copytext a[name] {
|
|
1026
|
+
scroll-margin-top: 128px;
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1019
1029
|
.hrds-copytext__link:focus {
|
|
1020
1030
|
--tw-shadow: 0 0 0 0.25rem;
|
|
1021
1031
|
--tw-shadow-colored: 0 0 0 0.25rem var(--tw-shadow-color);
|
|
@@ -3695,7 +3705,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3695
3705
|
border-bottom-color: var(--color-secondary-ds);
|
|
3696
3706
|
}
|
|
3697
3707
|
.counter-reset {
|
|
3698
|
-
counter-reset:
|
|
3708
|
+
counter-reset: cnt1733918153852;
|
|
3699
3709
|
}
|
|
3700
3710
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
3701
3711
|
font-size: 0.75rem;
|
|
@@ -4109,7 +4119,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4109
4119
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4110
4120
|
}
|
|
4111
4121
|
.-ordered {
|
|
4112
|
-
counter-increment:
|
|
4122
|
+
counter-increment: cnt1733918153852 1;
|
|
4113
4123
|
}
|
|
4114
4124
|
.-ordered::before {
|
|
4115
4125
|
position: absolute;
|
|
@@ -4127,7 +4137,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4127
4137
|
--tw-text-opacity: 1;
|
|
4128
4138
|
color: rgba(0, 0, 0, 1);
|
|
4129
4139
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4130
|
-
content: counter(
|
|
4140
|
+
content: counter(cnt1733918153852);
|
|
4131
4141
|
}
|
|
4132
4142
|
/*! ****************************/
|
|
4133
4143
|
/*! 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.
|
|
9
|
+
"version": "1.114.38",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -311,6 +311,9 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
311
311
|
|
|
312
312
|
/* -----------------------------COPYTEXT ---------------------------- */
|
|
313
313
|
.hrds-copytext {
|
|
314
|
+
a[name] {
|
|
315
|
+
@apply scroll-mt-[117px] md:scroll-mt-[128px] scroll-smooth;
|
|
316
|
+
}
|
|
314
317
|
&__link {
|
|
315
318
|
@apply underline text-link decoration-1 hover:decoration-1 dark:text-link-dark ds-link;
|
|
316
319
|
}
|
|
@@ -335,4 +338,6 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
335
338
|
@apply not-italic;
|
|
336
339
|
}
|
|
337
340
|
}
|
|
341
|
+
|
|
342
|
+
|
|
338
343
|
}
|