hr-design-system-handlebars 1.83.11 → 1.83.12

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.83.12 (Wed Jul 24 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - DPE-3264 - Webview: Abstand von Dachzeile nach oben [#1029](https://github.com/mumprod/hr-design-system-handlebars/pull/1029) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.83.11 (Wed Jul 24 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3322,7 +3322,7 @@ article.indexTextDS .indexTextHighlighted .link {
3322
3322
  border-bottom-color: var(--color-secondary-ds);
3323
3323
  }
3324
3324
  .counter-reset {
3325
- counter-reset: cnt1721827813356;
3325
+ counter-reset: cnt1721832713933;
3326
3326
  }
3327
3327
  .hyphens-auto {
3328
3328
  -webkit-hyphens: auto;
@@ -3730,7 +3730,7 @@ article.indexTextDS .indexTextHighlighted .link {
3730
3730
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3731
3731
  }
3732
3732
  .-ordered {
3733
- counter-increment: cnt1721827813356 1;
3733
+ counter-increment: cnt1721832713933 1;
3734
3734
  }
3735
3735
  .-ordered::before {
3736
3736
  position: absolute;
@@ -3746,7 +3746,7 @@ article.indexTextDS .indexTextHighlighted .link {
3746
3746
  letter-spacing: .0125em;
3747
3747
  --tw-text-opacity: 1;
3748
3748
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3749
- content: counter(cnt1721827813356);
3749
+ content: counter(cnt1721832713933);
3750
3750
  }
3751
3751
  /*! ****************************/
3752
3752
  /*! DataPolicy stuff */
@@ -6153,6 +6153,10 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
6153
6153
  margin-right: 1.625rem;
6154
6154
  }
6155
6155
 
6156
+ .sm\:mt-0 {
6157
+ margin-top: 0px;
6158
+ }
6159
+
6156
6160
  .sm\:mt-1 {
6157
6161
  margin-top: 0.25rem;
6158
6162
  }
@@ -1,4 +1,4 @@
1
- <div class="grid grid-page">
1
+ <div class="grid grid-page{{#if _webview}} mt-4 sm:mt-0{{/if}}">
2
2
  <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
4
  </{{#if _isArticle}}article{{else}}div{{/if}}>
@@ -1,4 +1,5 @@
1
- {{#>components/page/base/page_wrapper _isArticle=true}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true _webview=_webview}}
2
+
2
3
  {{> components/page/base/page_header}}
3
4
 
4
5
  {{> components/page/components/shorttext _text=this.shorttext }}
@@ -1,4 +1,4 @@
1
- <div class="grid grid-page">
1
+ <div class="grid grid-page{{#if _webview}} mt-4 sm:mt-0{{/if}}">
2
2
  <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
4
  </{{#if _isArticle}}article{{else}}div{{/if}}>
@@ -1,4 +1,5 @@
1
- {{#>components/page/base/page_wrapper _isArticle=true}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true _webview=_webview}}
2
+
2
3
  {{> components/page/base/page_header}}
3
4
 
4
5
  {{> components/page/components/shorttext _text=this.shorttext }}
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.83.11",
9
+ "version": "1.83.12",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,4 +1,4 @@
1
- <div class="grid grid-page">
1
+ <div class="grid grid-page{{#if _webview}} mt-4 sm:mt-0{{/if}}">
2
2
  <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
4
  </{{#if _isArticle}}article{{else}}div{{/if}}>
@@ -1,4 +1,5 @@
1
- {{#>components/page/base/page_wrapper _isArticle=true}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true _webview=_webview}}
2
+
2
3
  {{> components/page/base/page_header}}
3
4
 
4
5
  {{> components/page/components/shorttext _text=this.shorttext }}
@@ -11,7 +11,6 @@ const Template = ({ ...args }) => {
11
11
  // return `<span>${topline}</span>`;
12
12
  return story_template({ ...args })
13
13
  }
14
-
15
14
  export default {
16
15
  title: 'Seiten/Artikel',
17
16
  }
@@ -24,7 +23,17 @@ export const Default = {
24
23
  layout: 'fullscreen',
25
24
  }
26
25
  }
27
-
26
+ export const Webview = {
27
+ render: Template.bind({}),
28
+ name: 'Webview Artikel mit Topline',
29
+ args: {
30
+ ...data_story,
31
+ _webview: true
32
+ },
33
+ parameters: {
34
+ layout: 'fullscreen',
35
+ }
36
+ }
28
37
  export const WithSquareImage = {
29
38
  render: Template.bind({}),
30
39
  name: 'Artikel mit 1:1-Bild',
@@ -72,3 +81,4 @@ export const WithAudio = {
72
81
  layout: 'fullscreen',
73
82
  }
74
83
  }
84
+