hr-design-system-handlebars 1.114.53 → 1.114.54
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 +14 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/forms/components/choice.hbs +3 -3
- package/dist/views/components/forms/components/choiceGroup.hbs +3 -3
- package/dist/views/components/forms/components/input.hbs +2 -2
- package/dist/views/components/forms/components/select.hbs +4 -4
- package/dist/views/components/forms/components/upload.hbs +3 -3
- package/package.json +1 -1
- package/src/stories/views/components/forms/components/choice.hbs +3 -3
- package/src/stories/views/components/forms/components/choiceGroup.hbs +3 -3
- package/src/stories/views/components/forms/components/input.hbs +2 -2
- package/src/stories/views/components/forms/components/select.hbs +4 -4
- package/src/stories/views/components/forms/components/upload.hbs +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v1.114.54 (Mon Jan 13 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Form Bug - Context Problems fixed [#1203](https://github.com/mumprod/hr-design-system-handlebars/pull/1203) (saad.elbaciri@hr.de [@eduardo-hr](https://github.com/eduardo-hr) [@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 3
|
|
8
|
+
|
|
9
|
+
- [@eduardo-hr](https://github.com/eduardo-hr)
|
|
10
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
11
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v1.114.53 (Mon Jan 13 2025)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3711,7 +3711,7 @@ article #commentList {
|
|
|
3711
3711
|
border-bottom-color: var(--color-secondary-ds);
|
|
3712
3712
|
}
|
|
3713
3713
|
.counter-reset {
|
|
3714
|
-
counter-reset:
|
|
3714
|
+
counter-reset: cnt1736772647121;
|
|
3715
3715
|
}
|
|
3716
3716
|
html { scroll-behavior: smooth; }
|
|
3717
3717
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
@@ -4126,7 +4126,7 @@ html { scroll-behavior: smooth; }
|
|
|
4126
4126
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4127
4127
|
}
|
|
4128
4128
|
.-ordered {
|
|
4129
|
-
counter-increment:
|
|
4129
|
+
counter-increment: cnt1736772647121 1;
|
|
4130
4130
|
}
|
|
4131
4131
|
.-ordered::before {
|
|
4132
4132
|
position: absolute;
|
|
@@ -4144,7 +4144,7 @@ html { scroll-behavior: smooth; }
|
|
|
4144
4144
|
--tw-text-opacity: 1;
|
|
4145
4145
|
color: rgba(0, 0, 0, 1);
|
|
4146
4146
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4147
|
-
content: counter(
|
|
4147
|
+
content: counter(cnt1736772647121);
|
|
4148
4148
|
}
|
|
4149
4149
|
/*! ****************************/
|
|
4150
4150
|
/*! DataPolicy stuff */
|
|
@@ -83,10 +83,10 @@
|
|
|
83
83
|
</div>
|
|
84
84
|
{{#unless _inGroup}}
|
|
85
85
|
{{#>components/forms/components/supportingTextBox }}
|
|
86
|
-
{{#if _description}}
|
|
87
|
-
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription() }"{{/if}}>{{_description}}</div>
|
|
86
|
+
{{#if ../../_description-adjust_context}}
|
|
87
|
+
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if ../../_required-adjust_context}}:class="{'hidden': hideDescription() }"{{/if}}>{{../../_description-adjust_context}}</div>
|
|
88
88
|
{{/if}}
|
|
89
|
-
{{#if _required}}
|
|
89
|
+
{{#if ../../_required-adjust_context}}
|
|
90
90
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
91
91
|
{{/if}}
|
|
92
92
|
{{/components/forms/components/supportingTextBox }}
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
{{/each}}
|
|
41
41
|
</div>
|
|
42
42
|
{{#>components/forms/components/supportingTextBox }}
|
|
43
|
-
{{#if _description}}
|
|
44
|
-
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description}}}</div>
|
|
43
|
+
{{#if ../../_description-adjust_context}}
|
|
44
|
+
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if ../../_required-adjust_context}}:class="{'hidden': hideDescription()}"{{/if}}>{{{../../_description-adjust_context}}}</div>
|
|
45
45
|
{{/if}}
|
|
46
|
-
{{#if _required}}
|
|
46
|
+
{{#if ../../_required-adjust_context}}
|
|
47
47
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
48
48
|
{{/if}}
|
|
49
49
|
{{/components/forms/components/supportingTextBox }}
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
|
|
63
63
|
{{#>components/forms/components/supportingTextBox }}
|
|
64
|
-
{{#if _description}}
|
|
65
|
-
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription() }">{{{_description}}}</div>
|
|
64
|
+
{{#if ../../_description-adjust_context}}
|
|
65
|
+
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription() }">{{{../../_description-adjust_context}}}</div>
|
|
66
66
|
{{/if}}
|
|
67
67
|
|
|
68
68
|
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
{{_label}}{{#if _required}}*{{/if}}
|
|
42
42
|
</label>
|
|
43
43
|
{{#>components/forms/components/supportingTextBox }}
|
|
44
|
-
{{#if _description}}
|
|
45
|
-
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription()}">{{{_description}}}</div>
|
|
44
|
+
{{#if ../../_description-adjust_context}}
|
|
45
|
+
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription()}">{{{../../_description-adjust_context}}}</div>
|
|
46
46
|
{{/if}}
|
|
47
|
-
{{#if _required}}
|
|
48
|
-
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" >{{_errorMessage}}</div>
|
|
47
|
+
{{#if ../../_required-adjust_context}}
|
|
48
|
+
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" >{{../../_errorMessage-adjust_context}}</div>
|
|
49
49
|
{{/if}}
|
|
50
50
|
{{/components/forms/components/supportingTextBox }}
|
|
51
51
|
<div class="absolute bg-white right-0 p-4 py-3 transform border-l peer-focus:border-r peer-focus:border-l-0 pointer-events-none top-1.5 peer-focus:rotate-180">
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
</div>
|
|
63
63
|
</div>
|
|
64
64
|
{{#>components/forms/components/supportingTextBox }}
|
|
65
|
-
{{#if _description}}
|
|
66
|
-
<div class="text-xs text-gray-500 dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description}}}</div>
|
|
65
|
+
{{#if ../../_description-adjust_context}}
|
|
66
|
+
<div class="text-xs text-gray-500 dark:text-text-dark" {{#if ../../_required-adjust_context}}:class="{'hidden': hideDescription()}"{{/if}}>{{{../../_description-adjust_context}}}</div>
|
|
67
67
|
{{/if}}
|
|
68
|
-
{{#if _required}}
|
|
68
|
+
{{#if ../../_required-adjust_context}}
|
|
69
69
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
70
70
|
{{/if}}
|
|
71
71
|
{{/components/forms/components/supportingTextBox }}
|
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.54",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -83,10 +83,10 @@
|
|
|
83
83
|
</div>
|
|
84
84
|
{{#unless _inGroup}}
|
|
85
85
|
{{#>components/forms/components/supportingTextBox }}
|
|
86
|
-
{{#if _description}}
|
|
87
|
-
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription() }"{{/if}}>{{_description}}</div>
|
|
86
|
+
{{#if _description-adjust_context}}
|
|
87
|
+
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required-adjust_context}}:class="{'hidden': hideDescription() }"{{/if}}>{{_description-adjust_context}}</div>
|
|
88
88
|
{{/if}}
|
|
89
|
-
{{#if _required}}
|
|
89
|
+
{{#if _required-adjust_context}}
|
|
90
90
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
91
91
|
{{/if}}
|
|
92
92
|
{{/components/forms/components/supportingTextBox }}
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
{{/each}}
|
|
41
41
|
</div>
|
|
42
42
|
{{#>components/forms/components/supportingTextBox }}
|
|
43
|
-
{{#if _description}}
|
|
44
|
-
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description}}}</div>
|
|
43
|
+
{{#if _description-adjust_context}}
|
|
44
|
+
<div class="text-xs text-gray-scorpion dark:text-text-dark" {{#if _required-adjust_context}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description-adjust_context}}}</div>
|
|
45
45
|
{{/if}}
|
|
46
|
-
{{#if _required}}
|
|
46
|
+
{{#if _required-adjust_context}}
|
|
47
47
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
48
48
|
{{/if}}
|
|
49
49
|
{{/components/forms/components/supportingTextBox }}
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
|
|
63
63
|
{{#>components/forms/components/supportingTextBox }}
|
|
64
|
-
{{#if _description}}
|
|
65
|
-
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription() }">{{{_description}}}</div>
|
|
64
|
+
{{#if _description-adjust_context}}
|
|
65
|
+
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription() }">{{{_description-adjust_context}}}</div>
|
|
66
66
|
{{/if}}
|
|
67
67
|
|
|
68
68
|
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
{{_label}}{{#if _required}}*{{/if}}
|
|
42
42
|
</label>
|
|
43
43
|
{{#>components/forms/components/supportingTextBox }}
|
|
44
|
-
{{#if _description}}
|
|
45
|
-
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription()}">{{{_description}}}</div>
|
|
44
|
+
{{#if _description-adjust_context}}
|
|
45
|
+
<div class="pl-4 text-xs text-gray-scorpion dark:text-text-dark" :class="{'hidden': hideDescription()}">{{{_description-adjust_context}}}</div>
|
|
46
46
|
{{/if}}
|
|
47
|
-
{{#if _required}}
|
|
48
|
-
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" >{{_errorMessage}}</div>
|
|
47
|
+
{{#if _required-adjust_context}}
|
|
48
|
+
<div class="hidden pl-4 text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" >{{_errorMessage-adjust_context}}</div>
|
|
49
49
|
{{/if}}
|
|
50
50
|
{{/components/forms/components/supportingTextBox }}
|
|
51
51
|
<div class="absolute bg-white right-0 p-4 py-3 transform border-l peer-focus:border-r peer-focus:border-l-0 pointer-events-none top-1.5 peer-focus:rotate-180">
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
</div>
|
|
63
63
|
</div>
|
|
64
64
|
{{#>components/forms/components/supportingTextBox }}
|
|
65
|
-
{{#if _description}}
|
|
66
|
-
<div class="text-xs text-gray-500 dark:text-text-dark" {{#if _required}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description}}}</div>
|
|
65
|
+
{{#if _description-adjust_context}}
|
|
66
|
+
<div class="text-xs text-gray-500 dark:text-text-dark" {{#if _required-adjust_context}}:class="{'hidden': hideDescription()}"{{/if}}>{{{_description-adjust_context}}}</div>
|
|
67
67
|
{{/if}}
|
|
68
|
-
{{#if _required}}
|
|
68
|
+
{{#if _required-adjust_context}}
|
|
69
69
|
<div class="hidden text-xs text-error dark:text-error-dark" :class="{'hidden': hideError()}" x-text="errorMessage"></div>
|
|
70
70
|
{{/if}}
|
|
71
71
|
{{/components/forms/components/supportingTextBox }}
|