hr-design-system-handlebars 1.81.2 → 1.81.3

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.81.3 (Thu Jul 11 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Fixing wrong object entry name on style.hr.de [#1003](https://github.com/mumprod/hr-design-system-handlebars/pull/1003) ([@Paul-Atreidis](https://github.com/Paul-Atreidis))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@Paul-Atreidis](https://github.com/Paul-Atreidis)
10
+
11
+ ---
12
+
1
13
  # v1.81.2 (Wed Jul 10 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3306,7 +3306,7 @@ article.indexTextDS .indexTextHighlighted .link {
3306
3306
  border-bottom-color: var(--color-secondary-ds);
3307
3307
  }
3308
3308
  .counter-reset {
3309
- counter-reset: cnt1720623981396;
3309
+ counter-reset: cnt1720699533991;
3310
3310
  }
3311
3311
  .hyphens-auto {
3312
3312
  -webkit-hyphens: auto;
@@ -3704,7 +3704,7 @@ article.indexTextDS .indexTextHighlighted .link {
3704
3704
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3705
3705
  }
3706
3706
  .-ordered {
3707
- counter-increment: cnt1720623981396 1;
3707
+ counter-increment: cnt1720699533991 1;
3708
3708
  }
3709
3709
  .-ordered::before {
3710
3710
  position: absolute;
@@ -3720,7 +3720,7 @@ article.indexTextDS .indexTextHighlighted .link {
3720
3720
  letter-spacing: .0125em;
3721
3721
  --tw-text-opacity: 1;
3722
3722
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3723
- content: counter(cnt1720623981396);
3723
+ content: counter(cnt1720699533991);
3724
3724
  }
3725
3725
  /*! ****************************/
3726
3726
  /*! 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.81.2",
9
+ "version": "1.81.3",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,14 +1,13 @@
1
1
  const images = require.context('/src/assets/icons/404/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
6
- let svgList404 = {}
4
+ let file
5
+ let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
- svgList404[fileName] = "./icons/404/svgmap.min.svg#"+fileName
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
10
+ svgList[file] = file
12
11
  }
13
12
 
14
- export default svgList404;
13
+ export default svgList;
@@ -1,16 +1,15 @@
1
1
  const images = require.context('/src/assets/icons/icons/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
4
+ let file
6
5
  let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
10
  let substring = "-ds"
12
- if(!fileName.includes(substring)){
13
- svgList[fileName] = "./icons/icons/svgmap.min.svg#"+fileName
11
+ if(!file.includes(substring)){
12
+ svgList[file] = file
14
13
  }
15
14
  }
16
15
 
@@ -1,16 +1,15 @@
1
1
  const images = require.context('/src/assets/icons/icons/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
4
+ let file
6
5
  let svgListDs = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
10
  let substring = "-ds"
12
- if(fileName.includes(substring)){
13
- svgListDs[fileName] = "./icons/icons/svgmap.min.svg#"+fileName
11
+ if(file.includes(substring)){
12
+ svgListDs[file] = file
14
13
  }
15
14
  }
16
15
 
@@ -1,14 +1,13 @@
1
1
  const images = require.context('/src/assets/icons/epg/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
4
+ let file
6
5
  let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
- svgList[fileName] = "./icons/epg/svgmap.min.svg#"+fileName
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
10
+ svgList[file] = file
12
11
  }
13
12
 
14
13
  export default svgList;
@@ -1,14 +1,13 @@
1
1
  const images = require.context('/src/assets/icons/publictransport/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
6
- let svgListPublicTransport = {}
4
+ let file
5
+ let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
- svgListPublicTransport[fileName] = "./icons/publictransport/svgmap.min.svg#"+fileName
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
10
+ svgList[file] = file
12
11
  }
13
12
 
14
- export default svgListPublicTransport;
13
+ export default svgList;
@@ -1,14 +1,13 @@
1
1
  const images = require.context('/src/assets/icons/traffic/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
6
- let svgListTraffic = {}
4
+ let file
5
+ let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
- svgListTraffic[fileName] = "./icons/traffic/svgmap.min.svg#"+fileName
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
10
+ svgList[file] = file
12
11
  }
13
12
 
14
- export default svgListTraffic;
13
+ export default svgList;
@@ -1,14 +1,13 @@
1
1
  const images = require.context('/src/assets/icons/weather/svgmap', true);
2
2
 
3
3
  let imageList = {}
4
- let fileName
5
- let svgString
6
- let svgListWeather = {}
4
+ let file
5
+ let svgList = {}
7
6
  imageList = images.keys().map(image => images(image));
8
7
 
9
8
  for(let i=0; i < imageList.length; i++){
10
- fileName = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
11
- svgListWeather[fileName] = "./icons/weather/svgmap.min.svg#"+fileName
9
+ file = imageList[i].replace(/^.*[\\/]/, '').slice(0,-4)
10
+ svgList[file] = file
12
11
  }
13
12
 
14
- export default svgListWeather;
13
+ export default svgList;
@@ -21,7 +21,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
21
21
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
22
22
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
23
23
  <svg className="svg-item" width="120px" height="100px">
24
- <use xlinkHref={token[1]}></use>
24
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
25
25
  </svg>
26
26
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
27
27
  </div>
@@ -37,7 +37,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
37
37
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
38
38
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
39
39
  <svg className="svg-item" width="120px" height="100px">
40
- <use xlinkHref={token[1]}></use>
40
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
41
41
  </svg>
42
42
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
43
43
  </div>
@@ -52,7 +52,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
52
52
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
53
53
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
54
54
  <svg className="svg-item" width="120px" height="100px">
55
- <use xlinkHref={token[1]}></use>
55
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
56
56
  </svg>
57
57
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
58
58
  </div>
@@ -67,7 +67,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
67
67
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
68
68
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
69
69
  <svg className="svg-item" width="120px" height="100px">
70
- <use xlinkHref={token[1]}></use>
70
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
71
71
  </svg>
72
72
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
73
73
  </div>
@@ -82,7 +82,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
82
82
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
83
83
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
84
84
  <svg className="svg-item" width="120px" height="100px">
85
- <use xlinkHref={token[1]}></use>
85
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
86
86
  </svg>
87
87
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
88
88
  </div>
@@ -97,7 +97,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
97
97
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
98
98
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
99
99
  <svg className="svg-item" width="120px" height="100px">
100
- <use xlinkHref={token[1]}></use>
100
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
101
101
  </svg>
102
102
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
103
103
  </div>
@@ -112,7 +112,7 @@ aber auch die anderen noch aus dem alten Delivery stammenden dargestellt werden.
112
112
  <div style={{backgroundColor:'#fafafa', border: '1px solid #cacaca', display: 'inline-flex', alignItems: 'center', justifyContent: 'center'}}>
113
113
  <div style={{ width: '120px', height: '150px', margin: '5px', textAlign:'center', justifyContent: 'center'}}>
114
114
  <svg className="svg-item" width="120px" height="100px">
115
- <use xlinkHref={token[1]}></use>
115
+ <use xlinkHref={'./icons/icons/svgmap.min.svg#'+token[0]}></use>
116
116
  </svg>
117
117
  <span style={{textAlign:'center', fontSize:'12px', display: 'block', backgroundColor:'#000', color: '#fff', marginTop: '10px'}}>{token[0]}</span>
118
118
  </div>