hr-design-system-handlebars 1.63.12 → 1.63.13

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.63.13 (Fri Apr 12 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - margin bottom for labelgroup and topline [#905](https://github.com/mumprod/hr-design-system-handlebars/pull/905) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
1
13
  # v1.63.12 (Fri Apr 12 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1338,6 +1338,9 @@ article.indexTextDS .indexTextHighlighted .link {
1338
1338
  .mb-12 {
1339
1339
  margin-bottom: 3rem;
1340
1340
  }
1341
+ .mb-2 {
1342
+ margin-bottom: 0.5rem;
1343
+ }
1341
1344
  .mb-3 {
1342
1345
  margin-bottom: 0.75rem;
1343
1346
  }
@@ -3333,7 +3336,7 @@ article.indexTextDS .indexTextHighlighted .link {
3333
3336
  border-bottom-color: var(--color-secondary-ds);
3334
3337
  }
3335
3338
  .counter-reset {
3336
- counter-reset: cnt1712929239066;
3339
+ counter-reset: cnt1712930751208;
3337
3340
  }
3338
3341
  .hyphens-auto {
3339
3342
  -webkit-hyphens: auto;
@@ -3712,7 +3715,7 @@ article.indexTextDS .indexTextHighlighted .link {
3712
3715
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3713
3716
  }
3714
3717
  .-ordered {
3715
- counter-increment: cnt1712929239066 1;
3718
+ counter-increment: cnt1712930751208 1;
3716
3719
  }
3717
3720
  .-ordered::before {
3718
3721
  position: absolute;
@@ -3728,7 +3731,7 @@ article.indexTextDS .indexTextHighlighted .link {
3728
3731
  letter-spacing: .0125em;
3729
3732
  --tw-text-opacity: 1;
3730
3733
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3731
- content: counter(cnt1712929239066);
3734
+ content: counter(cnt1712930751208);
3732
3735
  }
3733
3736
  /*! ****************************/
3734
3737
  /*! DataPolicy stuff */
@@ -2,13 +2,13 @@
2
2
  <h2>
3
3
  {{#if this.label }}
4
4
  {{#with this.label}}
5
- {{#> components/label/label_group}}
5
+ {{#> components/label/label_group _css="mb-2"}}
6
6
  {{> components/label/label _type=this.type _text=(loca this.loca)}}
7
7
  {{/components/label/label_group}}
8
8
  {{/with}}
9
9
  {{else}}
10
10
  {{~#if topline}}
11
- <span class="block text-base sm480:text-xl font-heading">{{this.topline}}</span>
11
+ <span class="block mb-2 text-base sm480:text-xl font-heading">{{this.topline}}</span>
12
12
  {{/if~}}
13
13
  {{/if~}}
14
14
  <span class="text-3xl font-headingSerif sm480:text-4xl">{{this.title}}</span>
@@ -2,13 +2,13 @@
2
2
  <h2>
3
3
  {{#if this.label }}
4
4
  {{#with this.label}}
5
- {{#> components/label/label_group}}
5
+ {{#> components/label/label_group _css="mb-2"}}
6
6
  {{> components/label/label _type=this.type _text=(loca this.loca)}}
7
7
  {{/components/label/label_group}}
8
8
  {{/with}}
9
9
  {{else}}
10
10
  {{~#if topline}}
11
- <span class="block text-base sm480:text-xl font-heading">{{this.topline}}</span>
11
+ <span class="block mb-2 text-base sm480:text-xl font-heading">{{this.topline}}</span>
12
12
  {{/if~}}
13
13
  {{/if~}}
14
14
  <span class="text-3xl font-headingSerif sm480:text-4xl">{{this.title}}</span>
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.63.12",
9
+ "version": "1.63.13",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -2,13 +2,13 @@
2
2
  <h2>
3
3
  {{#if this.label }}
4
4
  {{#with this.label}}
5
- {{#> components/label/label_group}}
5
+ {{#> components/label/label_group _css="mb-2"}}
6
6
  {{> components/label/label _type=this.type _text=(loca this.loca)}}
7
7
  {{/components/label/label_group}}
8
8
  {{/with}}
9
9
  {{else}}
10
10
  {{~#if topline}}
11
- <span class="block text-base sm480:text-xl font-heading">{{this.topline}}</span>
11
+ <span class="block mb-2 text-base sm480:text-xl font-heading">{{this.topline}}</span>
12
12
  {{/if~}}
13
13
  {{/if~}}
14
14
  <span class="text-3xl font-headingSerif sm480:text-4xl">{{this.title}}</span>