hr-design-system-handlebars 1.68.4 β 1.68.6
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/.storybook/preview.js
CHANGED
|
@@ -17,9 +17,9 @@ import '../src/assets/tailwind.css'
|
|
|
17
17
|
import { CheckCSS } from 'checkcss';
|
|
18
18
|
|
|
19
19
|
configureActions({
|
|
20
|
-
clearOnStoryChange: true,
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
clearOnStoryChange: true,
|
|
21
|
+
});
|
|
22
|
+
|
|
23
23
|
// Create CheckCSS instance
|
|
24
24
|
const checkcss = new CheckCSS();
|
|
25
25
|
|
|
@@ -34,8 +34,8 @@ checkcss.onClassnameDetected = function (classname, element) {
|
|
|
34
34
|
checkcss.onUndefinedClassname = function (classname) {
|
|
35
35
|
console.log(
|
|
36
36
|
`checkcss: No CSS rule for .${classname}`,
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
);
|
|
38
|
+
};
|
|
39
39
|
|
|
40
40
|
checkcss.scan().watch();
|
|
41
41
|
|
|
@@ -43,7 +43,7 @@ const panelInclude = setConsoleOptions({}).panelInclude;
|
|
|
43
43
|
|
|
44
44
|
setConsoleOptions({
|
|
45
45
|
panelInclude: [...panelInclude, /checkcss/],
|
|
46
|
-
});
|
|
46
|
+
});
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
function loadDelayedImages() {
|
|
@@ -74,16 +74,10 @@ let eventSrcUrl = null
|
|
|
74
74
|
|
|
75
75
|
document.addEventListener('DOMContentLoaded', function (event) {
|
|
76
76
|
console.log('DOM fully loaded and parsed')
|
|
77
|
-
|
|
78
|
-
eventSrcUrl = event.srcElement.URL
|
|
79
|
-
|
|
80
|
-
console.log('Start feature initialization')
|
|
77
|
+
console.log('Start feature initialization')
|
|
81
78
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
} else {
|
|
85
|
-
console.log('second DOMContentLoaded Event was blocked!')
|
|
86
|
-
}
|
|
79
|
+
Initializer.run(document, loadFeature)
|
|
80
|
+
setTimeout(loadDelayedImages, 200)
|
|
87
81
|
})
|
|
88
82
|
|
|
89
83
|
/*if (process.env.NODE_ENV !== 'production') {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
# v1.68.6 (Wed May 29 2024)
|
|
2
|
+
|
|
3
|
+
#### π Bug Fix
|
|
4
|
+
|
|
5
|
+
- Try to make chromatic take screenshots of the opened modal by inserti⦠[#933](https://github.com/mumprod/hr-design-system-handlebars/pull/933) ([@szuelch](https://github.com/szuelch) [@ampersand83](https://github.com/ampersand83))
|
|
6
|
+
|
|
7
|
+
#### π© Dependency Updates
|
|
8
|
+
|
|
9
|
+
- updates async-alpine to latest version [#932](https://github.com/mumprod/hr-design-system-handlebars/pull/932) ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
#### Authors: 3
|
|
12
|
+
|
|
13
|
+
- [@ampersand83](https://github.com/ampersand83)
|
|
14
|
+
- [@szuelch](https://github.com/szuelch)
|
|
15
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# v1.68.5 (Wed May 29 2024)
|
|
20
|
+
|
|
21
|
+
#### π Bug Fix
|
|
22
|
+
|
|
23
|
+
- :bug: Make sure that the regex in the loca helper only matches when it recognizes numbers in between opening and closing curly braces. [#931](https://github.com/mumprod/hr-design-system-handlebars/pull/931) ([@szuelch](https://github.com/szuelch))
|
|
24
|
+
|
|
25
|
+
#### Authors: 1
|
|
26
|
+
|
|
27
|
+
- [@szuelch](https://github.com/szuelch)
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
1
31
|
# v1.68.4 (Tue May 28 2024)
|
|
2
32
|
|
|
3
33
|
#### π Bug Fix
|
|
@@ -430,7 +430,7 @@ var helpers = {
|
|
|
430
430
|
const args = Array.prototype.slice.call(arguments);
|
|
431
431
|
// Extract params from arguments object. No params are present when length of arguments array is <= 2
|
|
432
432
|
let params = args.length > 2 ? args.slice(1, args.length - 1) : []
|
|
433
|
-
const regex = /(?<property>{<%(?<propertyKey>.*?)%>})|(?<userConsent>{nuc\s(?<userConsentUrl>.*?)\snuc})|(?<param>{(?<paramKey
|
|
433
|
+
const regex = /(?<property>{<%(?<propertyKey>.*?)%>})|(?<userConsent>{nuc\s(?<userConsentUrl>.*?)\snuc})|(?<param>{(?<paramKey>\d*?)})/g
|
|
434
434
|
const matches = loca.matchAll(regex)
|
|
435
435
|
const placeHolders = []
|
|
436
436
|
for (const match of matches) {
|
package/dist/assets/index.css
CHANGED
|
@@ -3350,7 +3350,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3350
3350
|
border-bottom-color: var(--color-secondary-ds);
|
|
3351
3351
|
}
|
|
3352
3352
|
.counter-reset {
|
|
3353
|
-
counter-reset:
|
|
3353
|
+
counter-reset: cnt1716982322005;
|
|
3354
3354
|
}
|
|
3355
3355
|
.hyphens-auto {
|
|
3356
3356
|
-webkit-hyphens: auto;
|
|
@@ -3729,7 +3729,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3729
3729
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3730
3730
|
}
|
|
3731
3731
|
.-ordered {
|
|
3732
|
-
counter-increment:
|
|
3732
|
+
counter-increment: cnt1716982322005 1;
|
|
3733
3733
|
}
|
|
3734
3734
|
.-ordered::before {
|
|
3735
3735
|
position: absolute;
|
|
@@ -3745,7 +3745,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3745
3745
|
letter-spacing: .0125em;
|
|
3746
3746
|
--tw-text-opacity: 1;
|
|
3747
3747
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3748
|
-
content: counter(
|
|
3748
|
+
content: counter(cnt1716982322005);
|
|
3749
3749
|
}
|
|
3750
3750
|
/*! ****************************/
|
|
3751
3751
|
/*! 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.68.
|
|
9
|
+
"version": "1.68.6",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|