hr-design-system-handlebars 1.11.4 → 1.11.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/.github/workflows/chromatic.yml +2 -2
- package/.storybook/manager-head.html +1 -0
- package/.storybook/preview.js +6 -1
- package/CHANGELOG.md +33 -0
- package/README.md +7 -7
- package/dist/assets/index.css +998 -987
- package/dist/assets/vendor/js/header.alpine.js +1 -0
- package/dist/views/components/site_header/section_navigation/section_navigation.hbs +5 -0
- package/dist/views/components/site_header/section_navigation/section_navigation_item.hbs +1 -1
- package/dist/views/components/site_header/section_navigation/section_navigation_top_topics.hbs +11 -0
- package/dist/views/components/teaser/stage/stage_text.hbs +1 -1
- package/package.json +3 -1
- package/src/assets/fixtures/site_header/site_header_mit_top_topics.json +19 -0
- package/src/assets/fixtures/site_header/topTopicsNavigation.inc.json +22 -0
- package/src/assets/vendor/js/header.alpine.js +1 -0
- package/src/stories/Example.stories.mdx +57 -62
- package/src/stories/InstallAndUpdate.stories.mdx +38 -0
- package/src/stories/views/components/site_header/fixtures/site_header_mit_top_topics.json +1 -0
- package/src/stories/views/components/site_header/header.stories.mdx +15 -0
- package/src/stories/views/components/site_header/section_navigation/section_navigation.hbs +5 -0
- package/src/stories/views/components/site_header/section_navigation/section_navigation_item.hbs +1 -1
- package/src/stories/views/components/site_header/section_navigation/section_navigation_top_topics.hbs +11 -0
- package/src/stories/views/components/teaser/stage/stage_text.hbs +1 -1
|
@@ -18,9 +18,9 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
node-version: 16.x
|
|
20
20
|
- name: install
|
|
21
|
-
run:
|
|
21
|
+
run: yarn
|
|
22
22
|
- name: create partials
|
|
23
|
-
run:
|
|
23
|
+
run: yarn partialsToJs
|
|
24
24
|
- uses: chromaui/action@v1
|
|
25
25
|
with:
|
|
26
26
|
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<meta name="robots" content="noindex, nofollow">
|
package/.storybook/preview.js
CHANGED
|
@@ -189,7 +189,12 @@ export const parameters = {
|
|
|
189
189
|
order: [
|
|
190
190
|
'Einführung',
|
|
191
191
|
'Grundlegendes',
|
|
192
|
-
[
|
|
192
|
+
[
|
|
193
|
+
'Installation und Update',
|
|
194
|
+
'Konventionen und Datenstrukturen',
|
|
195
|
+
'Testdatenbereitstellung',
|
|
196
|
+
'*',
|
|
197
|
+
],
|
|
193
198
|
'Komponenten',
|
|
194
199
|
['Page', 'Header', 'Teaser', 'grid', 'Label'],
|
|
195
200
|
'*',
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
# v1.11.6 (Mon Apr 03 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- -set meta robots to no index [#601](https://github.com/mumprod/hr-design-system-handlebars/pull/601) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.11.5 (Wed Mar 29 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Topthemen: Mockup in Storybook DPE-1912 [#599](https://github.com/mumprod/hr-design-system-handlebars/pull/599) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
18
|
+
|
|
19
|
+
#### 🏠 Internal
|
|
20
|
+
|
|
21
|
+
- UPDATE: Updates storybook and all its dependencies [#596](https://github.com/mumprod/hr-design-system-handlebars/pull/596) ([@szuelch](https://github.com/szuelch))
|
|
22
|
+
|
|
23
|
+
#### 📝 Documentation
|
|
24
|
+
|
|
25
|
+
- DOC: Adds documentation for the installation and [#597](https://github.com/mumprod/hr-design-system-handlebars/pull/597) ([@szuelch](https://github.com/szuelch))
|
|
26
|
+
|
|
27
|
+
#### Authors: 2
|
|
28
|
+
|
|
29
|
+
- [@szuelch](https://github.com/szuelch)
|
|
30
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
1
34
|
# v1.11.4 (Mon Mar 27 2023)
|
|
2
35
|
|
|
3
36
|
#### 🐛 Bug Fix
|
package/README.md
CHANGED
|
@@ -28,20 +28,20 @@ klonen. Danach in das Installationsverzeichnis wechseln und alle notwendigen
|
|
|
28
28
|
npm Pakete mit dem Befehl
|
|
29
29
|
|
|
30
30
|
```
|
|
31
|
-
|
|
31
|
+
yarn
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
installieren.
|
|
35
35
|
Mit dem Befehl
|
|
36
36
|
|
|
37
37
|
```
|
|
38
|
-
|
|
38
|
+
yarn storybook
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
kann das Designsystem lokal gestartet werden. Damit dieses immer mit den aktuellsten Daten arbeitet, muss in einem weiteren Terminalfenster zudem das Skript `optimize-assets` mit dem Befehl
|
|
42
42
|
|
|
43
43
|
```
|
|
44
|
-
|
|
44
|
+
yarn optimize-assets
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
gestartet werden. Dieses Skript erzeugt für die einzelnen Features JSON-Testdaten, optimiert im SVG-Format vorliegende Icons, erzeugt eine angepasste Version von Modernizr.js und stellt alle Handelbars-Templates als JS-Exporte zur Verfügung. Es läuft im Watch-Modus,
|
|
@@ -68,12 +68,12 @@ settings.json
|
|
|
68
68
|
"workbench.action.terminal.focusPreviousPane",
|
|
69
69
|
{
|
|
70
70
|
"command": "workbench.action.terminal.sendSequence",
|
|
71
|
-
"args": { "text": "
|
|
71
|
+
"args": { "text": "yarn storybook\r" }
|
|
72
72
|
},
|
|
73
73
|
"workbench.action.terminal.focusNextPane",
|
|
74
74
|
{
|
|
75
75
|
"command": "workbench.action.terminal.sendSequence",
|
|
76
|
-
"args": { "text": "
|
|
76
|
+
"args": { "text": "yarn optimize-assets\r" }
|
|
77
77
|
}
|
|
78
78
|
]
|
|
79
79
|
}
|
|
@@ -102,8 +102,8 @@ Makro hintereinander aus:
|
|
|
102
102
|
2. Öffnen eines neuen Terminal Fensters
|
|
103
103
|
3. Teilen des Terminal Fensters
|
|
104
104
|
4. Setze den Fokus auf das linke Terminal Fenster
|
|
105
|
-
5. Setze den Befehl `
|
|
105
|
+
5. Setze den Befehl `yarn storybook` ab und führe ihn aus
|
|
106
106
|
6. Setze den Fokus auf das rechte Terminal Fenster
|
|
107
|
-
7. Setze den Befehl `
|
|
107
|
+
7. Setze den Befehl `yarn optimize-assets` ab und führe ihn aus
|
|
108
108
|
|
|
109
109
|
Weitere Details und Grundlagen zum Gebrauch des Designsystems können direkt in dessen Dokumentation eingesehen werden.
|