hr-design-system-handlebars 1.7.0 → 1.7.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 +25 -0
- package/dist/assets/index.css +3 -7
- package/dist/views/components/content_nav/content_nav_list.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/tailwind.css +3 -3
- package/src/stories/views/components/content_nav/content_nav_list.hbs +1 -1
- package/tailwind.config.js +23 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v1.7.2 (Mon Mar 06 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- remove unused colors [#579](https://github.com/mumprod/hr-design-system-handlebars/pull/579) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.7.1 (Fri Mar 03 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- no white spaces in accent group [#578](https://github.com/mumprod/hr-design-system-handlebars/pull/578) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
|
|
18
|
+
|
|
19
|
+
#### Authors: 2
|
|
20
|
+
|
|
21
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
22
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v1.7.0 (Wed Mar 01 2023)
|
|
2
27
|
|
|
3
28
|
#### 🚀 Enhancement
|
package/dist/assets/index.css
CHANGED
|
@@ -2667,7 +2667,7 @@ video {
|
|
|
2667
2667
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2668
2668
|
}
|
|
2669
2669
|
.counter-reset {
|
|
2670
|
-
counter-reset:
|
|
2670
|
+
counter-reset: cnt1678094754050;
|
|
2671
2671
|
}
|
|
2672
2672
|
.line-clamp-4 {
|
|
2673
2673
|
overflow: hidden;
|
|
@@ -2901,7 +2901,7 @@ video {
|
|
|
2901
2901
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2902
2902
|
}
|
|
2903
2903
|
.-ordered {
|
|
2904
|
-
counter-increment:
|
|
2904
|
+
counter-increment: cnt1678094754050 1;
|
|
2905
2905
|
}
|
|
2906
2906
|
.-ordered::before {
|
|
2907
2907
|
position: absolute;
|
|
@@ -2917,7 +2917,7 @@ video {
|
|
|
2917
2917
|
letter-spacing: .0125em;
|
|
2918
2918
|
--tw-text-opacity: 1;
|
|
2919
2919
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2920
|
-
content: counter(
|
|
2920
|
+
content: counter(cnt1678094754050);
|
|
2921
2921
|
}
|
|
2922
2922
|
/*! ****************************/
|
|
2923
2923
|
/*! text-shadow */
|
|
@@ -4541,10 +4541,6 @@ video {
|
|
|
4541
4541
|
border-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
4542
4542
|
}
|
|
4543
4543
|
|
|
4544
|
-
.md\:bg-transparent {
|
|
4545
|
-
background-color: transparent;
|
|
4546
|
-
}
|
|
4547
|
-
|
|
4548
4544
|
.md\:bg-neutral-200 {
|
|
4549
4545
|
--tw-bg-opacity: 1;
|
|
4550
4546
|
background-color: rgba(229, 229, 229, var(--tw-bg-opacity));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<ul class="flex bg-
|
|
1
|
+
<ul class="flex bg-transparent flex-wrap{{#if this.isListOrFlow}} w-full gap-x-2 gap-y-2{{/if}} z-1003 md:!px-0 last:border-b-0{{#if this.isDropdown }} w-full{{/if}}"
|
|
2
2
|
>
|
|
3
3
|
|
|
4
4
|
{{~#each this.contentNavEntries~}}
|
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.7.
|
|
9
|
+
"version": "1.7.2",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
package/src/assets/tailwind.css
CHANGED
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
[data-theme='hr-rundfunkrat'] {
|
|
265
265
|
--color-primary-ds: theme('colors.grey.scorpion');
|
|
266
266
|
--color-secondary-ds: #007179;
|
|
267
|
-
--color-highlight-1: theme('colors.blue.
|
|
267
|
+
--color-highlight-1: theme('colors.blue.accented');
|
|
268
268
|
--color-highlight-2: theme('colors.orange.spicyCarrot');
|
|
269
269
|
|
|
270
270
|
/* Medieninhalte, Video, Audio, Bildergalerie */
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
[data-theme='hr-werbung'] {
|
|
323
323
|
--color-primary-ds: theme('colors.blue.deepCerulean');
|
|
324
324
|
--color-secondary-ds: #007179;
|
|
325
|
-
--color-highlight-1: theme('colors.blue.
|
|
325
|
+
--color-highlight-1: theme('colors.blue.accented');
|
|
326
326
|
--color-highlight-2: theme('colors.orange.spicyCarrot');
|
|
327
327
|
|
|
328
328
|
/* Medieninhalte, Video, Audio, Bildergalerie */
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
[data-theme='hr'] {
|
|
493
493
|
--color-primary-ds: theme('colors.blue.deepCerulean');
|
|
494
494
|
--color-secondary-ds: #007179;
|
|
495
|
-
--color-highlight-1: theme('colors.blue.
|
|
495
|
+
--color-highlight-1: theme('colors.blue.accented');
|
|
496
496
|
--color-highlight-2: theme('colors.orange.spicyCarrot');
|
|
497
497
|
|
|
498
498
|
/* Medieninhalte, Video, Audio, Bildergalerie */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<ul class="flex bg-
|
|
1
|
+
<ul class="flex bg-transparent flex-wrap{{#if this.isListOrFlow}} w-full gap-x-2 gap-y-2{{/if}} z-1003 md:!px-0 last:border-b-0{{#if this.isDropdown }} w-full{{/if}}"
|
|
2
2
|
>
|
|
3
3
|
|
|
4
4
|
{{~#each this.contentNavEntries~}}
|
package/tailwind.config.js
CHANGED
|
@@ -227,34 +227,32 @@ module.exports = {
|
|
|
227
227
|
congress: '#005293',
|
|
228
228
|
deepCerulean: '#006eb7',
|
|
229
229
|
deeperPool: '#097d8e',
|
|
230
|
+
deepSeaDream: '#002c6b',
|
|
231
|
+
dodgerBlue: '#407596',
|
|
230
232
|
jellyBean: '#276b9e',
|
|
231
233
|
lightCerulean: '#007EA1FF',
|
|
232
|
-
linkWater: '#eaf3fa',
|
|
233
234
|
matisse: '#1B7C96',
|
|
234
|
-
|
|
235
|
+
midnight: '#023770',
|
|
235
236
|
pacificBlue: '#009bc6',
|
|
236
237
|
science: '#006dc1',
|
|
237
238
|
sea: '#006783',
|
|
238
239
|
tarawera: '#0a3355',
|
|
239
240
|
teal: '#007A7CFF',
|
|
240
241
|
turquoiseCerulian: '#007fa0',
|
|
241
|
-
midnight: '#023770',
|
|
242
|
-
deepSeaDream: '#002c6b',
|
|
243
|
-
dodgerBlue: '#407596',
|
|
244
242
|
},
|
|
245
243
|
'black': {
|
|
246
244
|
DEFAULT: '#000000',
|
|
247
245
|
},
|
|
248
246
|
'red': {
|
|
249
247
|
alizarinCrimson: '#e81f18',
|
|
250
|
-
thunderbird: '#cc1a14',
|
|
251
|
-
monza: '#c20016',
|
|
252
248
|
burntUmber: '#8d2725',
|
|
253
|
-
|
|
249
|
+
lipstick: '#CC006E',
|
|
250
|
+
mexican: '#a12644',
|
|
251
|
+
monza: '#c20016',
|
|
254
252
|
paprika: '#8C033DFF',
|
|
255
253
|
scarlett: '#9b0112',
|
|
256
|
-
|
|
257
|
-
|
|
254
|
+
thunderbird: '#cc1a14',
|
|
255
|
+
wellRead: '#AB2F2DFF',
|
|
258
256
|
},
|
|
259
257
|
'pink': {
|
|
260
258
|
fuchsie: '#bf0071',
|
|
@@ -262,16 +260,13 @@ module.exports = {
|
|
|
262
260
|
rose: '#e5007d',
|
|
263
261
|
},
|
|
264
262
|
'orange': {
|
|
265
|
-
terraX: '#bb4827',
|
|
266
|
-
spicyCarrot: '#d34600',
|
|
267
263
|
bridesmaid: '#FCF2ED',
|
|
268
|
-
|
|
269
|
-
goldDrop: '#f07800',
|
|
270
|
-
clementine: '#ec6602',
|
|
264
|
+
burntOrange: '#c95702',
|
|
271
265
|
chelseaGem: '#AD5500',
|
|
266
|
+
clementine: '#ec6602',
|
|
267
|
+
goldDrop: '#f07800',
|
|
272
268
|
oregon: '#A14702',
|
|
273
|
-
|
|
274
|
-
goldDrop: '#f07800'
|
|
269
|
+
spicyCarrot: '#d34600',
|
|
275
270
|
},
|
|
276
271
|
'teal': {
|
|
277
272
|
DEFAULT: '#007A7CFF',
|
|
@@ -279,49 +274,42 @@ module.exports = {
|
|
|
279
274
|
},
|
|
280
275
|
'grey': {
|
|
281
276
|
alabaster: '#f7f7f7',
|
|
282
|
-
armadillo: '#433d37',
|
|
283
|
-
concrete: '#f3f3f3',
|
|
284
|
-
scorpion: '#606060',
|
|
285
277
|
alto: '#e0e0e0',
|
|
286
|
-
|
|
287
|
-
dark: '#707070',
|
|
278
|
+
boulder: '#797979',
|
|
288
279
|
brightGray: '#E5F2F3',
|
|
289
|
-
|
|
280
|
+
concrete: '#f3f3f3',
|
|
281
|
+
dark: '#707070',
|
|
290
282
|
mercury: '#E6E6E6',
|
|
291
|
-
|
|
283
|
+
platinum: '#E5E8E8',
|
|
284
|
+
scorpion: '#606060',
|
|
292
285
|
},
|
|
293
286
|
'green': {
|
|
294
287
|
casal: '#29675d',
|
|
295
288
|
eden: '#0F6157FF',
|
|
289
|
+
flint: '#6e675e',
|
|
296
290
|
genoa: '#168378',
|
|
297
|
-
|
|
298
|
-
|
|
291
|
+
goBen: '#6e6748',
|
|
292
|
+
pacifica: '#6d761d',
|
|
299
293
|
pineGreen: '#007179',
|
|
300
294
|
teal: '#00727A',
|
|
301
295
|
tropicalRainForest: '#017e5c',
|
|
302
|
-
goBen: '#6e6748',
|
|
303
|
-
flint: '#6e675e',
|
|
304
|
-
pacifica: '#6d761d',
|
|
305
296
|
},
|
|
306
297
|
'purple': {
|
|
307
298
|
disco: '#88114b',
|
|
308
|
-
pompadour: '#6d0041',
|
|
309
299
|
jazzberry: '#a00d65',
|
|
310
|
-
|
|
300
|
+
pompadour: '#6d0041',
|
|
311
301
|
},
|
|
312
302
|
'white': {
|
|
313
|
-
azureish: '#DBEAEA',
|
|
314
303
|
DEFAULT: '#ffffff',
|
|
304
|
+
azureish: '#DBEAEA',
|
|
315
305
|
blackhaze: '#eaeded',
|
|
316
306
|
floral: '#FBF9EE',
|
|
317
307
|
},
|
|
318
308
|
'yellow': {
|
|
319
309
|
corn: '#e0ae00',
|
|
320
310
|
goldenSand: '#f2da6c',
|
|
321
|
-
olive: '#916B00',
|
|
322
|
-
givry: '#f7ebbf',
|
|
323
|
-
sunshine: '#ffb114',
|
|
324
311
|
hokeyPokey: '#c1bc2b',
|
|
312
|
+
olive: '#916B00',
|
|
325
313
|
},
|
|
326
314
|
'primary': 'var(--color-primary-ds)',
|
|
327
315
|
'secondary': 'var(--color-secondary-ds)',
|