hr-design-system-handlebars 1.114.16 → 1.114.17
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/voting.hbs +6 -4
- package/dist/views/components/voting/voting_result.hbs +2 -2
- package/dist/views_static/components/voting/voting.hbs +6 -4
- package/dist/views_static/components/voting/voting_result.hbs +2 -2
- package/package.json +1 -1
- package/src/stories/views/components/voting/voting.hbs +6 -4
- package/src/stories/views/components/voting/voting_result.hbs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.114.17 (Tue Nov 19 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- adaptions for delivery 2 [#1165](https://github.com/mumprod/hr-design-system-handlebars/pull/1165) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.114.16 (Tue Nov 19 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3678,7 +3678,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3678
3678
|
border-bottom-color: var(--color-secondary-ds);
|
|
3679
3679
|
}
|
|
3680
3680
|
.counter-reset {
|
|
3681
|
-
counter-reset:
|
|
3681
|
+
counter-reset: cnt1732038237171;
|
|
3682
3682
|
}
|
|
3683
3683
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
3684
3684
|
font-size: 0.75rem;
|
|
@@ -4092,7 +4092,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4092
4092
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4093
4093
|
}
|
|
4094
4094
|
.-ordered {
|
|
4095
|
-
counter-increment:
|
|
4095
|
+
counter-increment: cnt1732038237171 1;
|
|
4096
4096
|
}
|
|
4097
4097
|
.-ordered::before {
|
|
4098
4098
|
position: absolute;
|
|
@@ -4110,7 +4110,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4110
4110
|
--tw-text-opacity: 1;
|
|
4111
4111
|
color: rgba(0, 0, 0, 1);
|
|
4112
4112
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4113
|
-
content: counter(
|
|
4113
|
+
content: counter(cnt1732038237171);
|
|
4114
4114
|
}
|
|
4115
4115
|
/*! ****************************/
|
|
4116
4116
|
/*! DataPolicy stuff */
|
|
@@ -51,10 +51,12 @@
|
|
|
51
51
|
_addClassLabelForDataPolicy="!pt-0"
|
|
52
52
|
_addClassInput="!my-3 sm:!my-4 !ml-3 sm:!ml-4"
|
|
53
53
|
}}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
<div class="w-full h-12">
|
|
55
|
+
{{#if this.is2FSecured}}
|
|
56
|
+
<div class="float-left mt-1 text-xs text-gray-scorpion dark:text-text-dark font-headingSerif">{{loca "form_text_required"}}</div>
|
|
57
|
+
{{/if}}
|
|
58
|
+
{{> components/voting/components/voting_submit _label="Abstimmen" _addClass="js-voting-submit-button"}}
|
|
59
|
+
</div>
|
|
58
60
|
</div>
|
|
59
61
|
<script type="text/html" class="js-successMessage">
|
|
60
62
|
{{#if this.is2FSecured}}
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
{{#unless this.isSimpleSecured}}
|
|
75
75
|
{{#unless this.form.isVotingOver}}
|
|
76
76
|
{{#if _showBackButton}}
|
|
77
|
-
<div class="mt-6 sm:mt-12">
|
|
78
|
-
{{#> components/button/link_button _size="lg" _css="float-right"}}
|
|
77
|
+
<div class="w-full h-12 mt-6 sm:mt-12">
|
|
78
|
+
{{#> components/button/link_button _size="lg" _css="js-formReload float-right"}}
|
|
79
79
|
{{> components/button/components/button_label _label=(loca "votingform_form_back")}}
|
|
80
80
|
{{/components/button/link_button}}
|
|
81
81
|
</div>
|
|
@@ -51,10 +51,12 @@
|
|
|
51
51
|
_addClassLabelForDataPolicy="!pt-0"
|
|
52
52
|
_addClassInput="!my-3 sm:!my-4 !ml-3 sm:!ml-4"
|
|
53
53
|
}}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
<div class="w-full h-12">
|
|
55
|
+
{{#if this.is2FSecured}}
|
|
56
|
+
<div class="float-left mt-1 text-xs text-gray-scorpion dark:text-text-dark font-headingSerif">{{loca "form_text_required"}}</div>
|
|
57
|
+
{{/if}}
|
|
58
|
+
{{> components/voting/components/voting_submit _label="Abstimmen" _addClass="js-voting-submit-button"}}
|
|
59
|
+
</div>
|
|
58
60
|
</div>
|
|
59
61
|
<script type="text/html" class="js-successMessage">
|
|
60
62
|
{{#if this.is2FSecured}}
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
{{#unless this.isSimpleSecured}}
|
|
75
75
|
{{#unless this.form.isVotingOver}}
|
|
76
76
|
{{#if _showBackButton}}
|
|
77
|
-
<div class="mt-6 sm:mt-12">
|
|
78
|
-
{{#> components/button/link_button _size="lg" _css="float-right"}}
|
|
77
|
+
<div class="w-full h-12 mt-6 sm:mt-12">
|
|
78
|
+
{{#> components/button/link_button _size="lg" _css="js-formReload float-right"}}
|
|
79
79
|
{{> components/button/components/button_label _label=(loca "votingform_form_back")}}
|
|
80
80
|
{{/components/button/link_button}}
|
|
81
81
|
</div>
|
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.17",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -51,10 +51,12 @@
|
|
|
51
51
|
_addClassLabelForDataPolicy="!pt-0"
|
|
52
52
|
_addClassInput="!my-3 sm:!my-4 !ml-3 sm:!ml-4"
|
|
53
53
|
}}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
<div class="w-full h-12">
|
|
55
|
+
{{#if this.is2FSecured}}
|
|
56
|
+
<div class="float-left mt-1 text-xs text-gray-scorpion dark:text-text-dark font-headingSerif">{{loca "form_text_required"}}</div>
|
|
57
|
+
{{/if}}
|
|
58
|
+
{{> components/voting/components/voting_submit _label="Abstimmen" _addClass="js-voting-submit-button"}}
|
|
59
|
+
</div>
|
|
58
60
|
</div>
|
|
59
61
|
<script type="text/html" class="js-successMessage">
|
|
60
62
|
{{#if this.is2FSecured}}
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
{{#unless this.isSimpleSecured}}
|
|
75
75
|
{{#unless this.form.isVotingOver}}
|
|
76
76
|
{{#if _showBackButton}}
|
|
77
|
-
<div class="mt-6 sm:mt-12">
|
|
78
|
-
{{#> components/button/link_button _size="lg" _css="float-right"}}
|
|
77
|
+
<div class="w-full h-12 mt-6 sm:mt-12">
|
|
78
|
+
{{#> components/button/link_button _size="lg" _css="js-formReload float-right"}}
|
|
79
79
|
{{> components/button/components/button_label _label=(loca "votingform_form_back")}}
|
|
80
80
|
{{/components/button/link_button}}
|
|
81
81
|
</div>
|