hr-design-system-handlebars 1.114.10 → 1.114.11
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 +12 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/voting/components/voting_hint.hbs +3 -0
- package/dist/views/components/voting/voting_result.hbs +10 -6
- package/dist/views_static/components/voting/components/voting_hint.hbs +3 -0
- package/dist/views_static/components/voting/voting_result.hbs +10 -6
- package/package.json +1 -1
- package/src/stories/views/components/voting/components/voting_hint.hbs +3 -0
- package/src/stories/views/components/voting/voting_result.hbs +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.114.11 (Wed Nov 13 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- add component for voting-hints [#1159](https://github.com/mumprod/hr-design-system-handlebars/pull/1159) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.114.10 (Wed Nov 13 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3687,7 +3687,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3687
3687
|
border-bottom-color: var(--color-secondary-ds);
|
|
3688
3688
|
}
|
|
3689
3689
|
.counter-reset {
|
|
3690
|
-
counter-reset:
|
|
3690
|
+
counter-reset: cnt1731510744601;
|
|
3691
3691
|
}
|
|
3692
3692
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
3693
3693
|
font-size: 0.75rem;
|
|
@@ -4101,7 +4101,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4101
4101
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4102
4102
|
}
|
|
4103
4103
|
.-ordered {
|
|
4104
|
-
counter-increment:
|
|
4104
|
+
counter-increment: cnt1731510744601 1;
|
|
4105
4105
|
}
|
|
4106
4106
|
.-ordered::before {
|
|
4107
4107
|
position: absolute;
|
|
@@ -4119,7 +4119,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4119
4119
|
--tw-text-opacity: 1;
|
|
4120
4120
|
color: rgba(0, 0, 0, 1);
|
|
4121
4121
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4122
|
-
content: counter(
|
|
4122
|
+
content: counter(cnt1731510744601);
|
|
4123
4123
|
}
|
|
4124
4124
|
/*! ****************************/
|
|
4125
4125
|
/*! DataPolicy stuff */
|
|
@@ -45,22 +45,26 @@
|
|
|
45
45
|
{{#if this.isMultipleChoice}}
|
|
46
46
|
{{#unless this.showAbsoluteResult}}
|
|
47
47
|
{{#if this.showVoteResult}}
|
|
48
|
-
|
|
48
|
+
{{#>components/voting/components/voting_hint}}
|
|
49
49
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
50
|
-
|
|
50
|
+
{{/components/voting/components/voting_hint}}
|
|
51
51
|
{{/if}}
|
|
52
52
|
{{else}}
|
|
53
|
-
|
|
53
|
+
{{#>components/voting/components/voting_hint}}
|
|
54
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
55
|
+
{{/components/voting/components/voting_hint}}
|
|
54
56
|
{{/unless}}
|
|
55
57
|
{{else}}
|
|
56
58
|
{{#if this.showVoteResult}}
|
|
57
|
-
|
|
59
|
+
{{#>components/voting/components/voting_hint}}
|
|
58
60
|
{{#if this.showAbsoluteResult}}{{loca "votingform_vote_result_absolute_hint"}} |{{/if}}
|
|
59
61
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
60
|
-
|
|
62
|
+
{{/components/voting/components/voting_hint}}
|
|
61
63
|
{{else}}
|
|
62
64
|
{{#if this.showAbsoluteResult}}
|
|
63
|
-
|
|
65
|
+
{{#>components/voting/components/voting_hint}}
|
|
66
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
67
|
+
{{/components/voting/components/voting_hint}}
|
|
64
68
|
{{/if}}
|
|
65
69
|
{{/if}}
|
|
66
70
|
{{/if}}
|
|
@@ -45,22 +45,26 @@
|
|
|
45
45
|
{{#if this.isMultipleChoice}}
|
|
46
46
|
{{#unless this.showAbsoluteResult}}
|
|
47
47
|
{{#if this.showVoteResult}}
|
|
48
|
-
|
|
48
|
+
{{#>components/voting/components/voting_hint}}
|
|
49
49
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
50
|
-
|
|
50
|
+
{{/components/voting/components/voting_hint}}
|
|
51
51
|
{{/if}}
|
|
52
52
|
{{else}}
|
|
53
|
-
|
|
53
|
+
{{#>components/voting/components/voting_hint}}
|
|
54
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
55
|
+
{{/components/voting/components/voting_hint}}
|
|
54
56
|
{{/unless}}
|
|
55
57
|
{{else}}
|
|
56
58
|
{{#if this.showVoteResult}}
|
|
57
|
-
|
|
59
|
+
{{#>components/voting/components/voting_hint}}
|
|
58
60
|
{{#if this.showAbsoluteResult}}{{loca "votingform_vote_result_absolute_hint"}} |{{/if}}
|
|
59
61
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
60
|
-
|
|
62
|
+
{{/components/voting/components/voting_hint}}
|
|
61
63
|
{{else}}
|
|
62
64
|
{{#if this.showAbsoluteResult}}
|
|
63
|
-
|
|
65
|
+
{{#>components/voting/components/voting_hint}}
|
|
66
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
67
|
+
{{/components/voting/components/voting_hint}}
|
|
64
68
|
{{/if}}
|
|
65
69
|
{{/if}}
|
|
66
70
|
{{/if}}
|
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.114.
|
|
9
|
+
"version": "1.114.11",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -45,22 +45,26 @@
|
|
|
45
45
|
{{#if this.isMultipleChoice}}
|
|
46
46
|
{{#unless this.showAbsoluteResult}}
|
|
47
47
|
{{#if this.showVoteResult}}
|
|
48
|
-
|
|
48
|
+
{{#>components/voting/components/voting_hint}}
|
|
49
49
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
50
|
-
|
|
50
|
+
{{/components/voting/components/voting_hint}}
|
|
51
51
|
{{/if}}
|
|
52
52
|
{{else}}
|
|
53
|
-
|
|
53
|
+
{{#>components/voting/components/voting_hint}}
|
|
54
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
55
|
+
{{/components/voting/components/voting_hint}}
|
|
54
56
|
{{/unless}}
|
|
55
57
|
{{else}}
|
|
56
58
|
{{#if this.showVoteResult}}
|
|
57
|
-
|
|
59
|
+
{{#>components/voting/components/voting_hint}}
|
|
58
60
|
{{#if this.showAbsoluteResult}}{{loca "votingform_vote_result_absolute_hint"}} |{{/if}}
|
|
59
61
|
{{loca "votingform_vote_result"}}{{this.summarizedResult}}
|
|
60
|
-
|
|
62
|
+
{{/components/voting/components/voting_hint}}
|
|
61
63
|
{{else}}
|
|
62
64
|
{{#if this.showAbsoluteResult}}
|
|
63
|
-
|
|
65
|
+
{{#>components/voting/components/voting_hint}}
|
|
66
|
+
{{loca "votingform_vote_result_absolute_hint"}}
|
|
67
|
+
{{/components/voting/components/voting_hint}}
|
|
64
68
|
{{/if}}
|
|
65
69
|
{{/if}}
|
|
66
70
|
{{/if}}
|