hr-design-system-handlebars 0.52.1 → 0.52.2

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
+ # v0.52.2 (Tue Aug 02 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - - added ugly closing and openeing div again [#291](https://github.com/mumprod/hr-design-system-handlebars/pull/291) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v0.52.1 (Tue Aug 02 2022)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1,3 +1,4 @@
1
+ </div>
1
2
  <div
2
3
  x-data="{ tab: '{{this.tabbedGroup.[0].title}}' }"
3
4
  class="grid grid-cols-12 pt-6 md:pt-7 bg-[#dce8f0] mx-0 md:rounded-tl-3xl md:rounded-br-3xl col-main gap-x-6 gap-y-6"
@@ -19,4 +20,5 @@
19
20
  </div>
20
21
  {{~> components/teaser/teaser_logic/teaser_logic ~}}
21
22
  </section>
22
- </div>
23
+ </div>
24
+ <div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
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": "0.52.1",
9
+ "version": "0.52.2",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -1,3 +1,4 @@
1
+ </div>
1
2
  <div
2
3
  x-data="{ tab: '{{this.tabbedGroup.[0].title}}' }"
3
4
  class="grid grid-cols-12 pt-6 md:pt-7 bg-[#dce8f0] mx-0 md:rounded-tl-3xl md:rounded-br-3xl col-main gap-x-6 gap-y-6"
@@ -19,4 +20,5 @@
19
20
  </div>
20
21
  {{~> components/teaser/teaser_logic/teaser_logic ~}}
21
22
  </section>
22
- </div>
23
+ </div>
24
+ <div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
@@ -15,7 +15,9 @@ import tabboxData from '../fixtures/teaser_tabbox.json'
15
15
  decorators={[
16
16
  (Story) => {
17
17
  return `<div class="grid my-5 grid-page">
18
- ${Story()}
18
+ <div>
19
+ ${Story()}
20
+ </div>
19
21
  </div>`
20
22
  },
21
23
  ]}