hr-design-system-handlebars 1.52.8 → 1.52.9

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.52.9 (Mon Jan 22 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - add decorator for copytext [#810](https://github.com/mumprod/hr-design-system-handlebars/pull/810) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
1
13
  # v1.52.8 (Fri Jan 19 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1689,6 +1689,9 @@ article.indexText ul {
1689
1689
  .max-w-\[480px\] {
1690
1690
  max-width: 480px;
1691
1691
  }
1692
+ .max-w-\[724px\] {
1693
+ max-width: 724px;
1694
+ }
1692
1695
  .max-w-full {
1693
1696
  max-width: 100%;
1694
1697
  }
@@ -3225,7 +3228,7 @@ article.indexText ul {
3225
3228
  border-bottom-color: var(--color-secondary-ds);
3226
3229
  }
3227
3230
  .counter-reset {
3228
- counter-reset: cnt1705691587463;
3231
+ counter-reset: cnt1705918469534;
3229
3232
  }
3230
3233
  .hyphens-auto {
3231
3234
  -webkit-hyphens: auto;
@@ -3527,7 +3530,7 @@ article.indexText ul {
3527
3530
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3528
3531
  }
3529
3532
  .-ordered {
3530
- counter-increment: cnt1705691587463 1;
3533
+ counter-increment: cnt1705918469534 1;
3531
3534
  }
3532
3535
  .-ordered::before {
3533
3536
  position: absolute;
@@ -3543,7 +3546,7 @@ article.indexText ul {
3543
3546
  letter-spacing: .0125em;
3544
3547
  --tw-text-opacity: 1;
3545
3548
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3546
- content: counter(cnt1705691587463);
3549
+ content: counter(cnt1705918469534);
3547
3550
  }
3548
3551
  /*! ****************************/
3549
3552
  /*! 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.52.8",
9
+ "version": "1.52.9",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -12,6 +12,13 @@ const Template = ({ ...args }) => {
12
12
 
13
13
  export default {
14
14
  title: 'Komponenten/Content/Copytext',
15
+ decorators: [
16
+ (Story) => {
17
+ return `<div class="max-w-[724px] mx-auto">
18
+ ${Story()}
19
+ </div>`
20
+ },
21
+ ],
15
22
  }
16
23
 
17
24
  export const Default = {