hr-design-system-handlebars 1.42.1 → 1.42.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 CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.42.2 (Fri Oct 13 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - DPE-2550 - Button hängt über Hintergrund- [#733](https://github.com/mumprod/hr-design-system-handlebars/pull/733) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
10
+
11
+ ---
12
+
1
13
  # v1.42.1 (Fri Oct 13 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1132,6 +1132,9 @@ video {
1132
1132
  .z-300 {
1133
1133
  z-index: 300;
1134
1134
  }
1135
+ .z-50 {
1136
+ z-index: 50;
1137
+ }
1135
1138
  .order-1 {
1136
1139
  order: 1;
1137
1140
  }
@@ -3035,7 +3038,7 @@ video {
3035
3038
  border-bottom-color: var(--color-secondary-ds);
3036
3039
  }
3037
3040
  .counter-reset {
3038
- counter-reset: cnt1697198003927;
3041
+ counter-reset: cnt1697199714238;
3039
3042
  }
3040
3043
  .hyphens-auto {
3041
3044
  -webkit-hyphens: auto;
@@ -3270,7 +3273,7 @@ video {
3270
3273
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3271
3274
  }
3272
3275
  .-ordered {
3273
- counter-increment: cnt1697198003927 1;
3276
+ counter-increment: cnt1697199714238 1;
3274
3277
  }
3275
3278
  .-ordered::before {
3276
3279
  position: absolute;
@@ -3286,7 +3289,7 @@ video {
3286
3289
  letter-spacing: .0125em;
3287
3290
  --tw-text-opacity: 1;
3288
3291
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3289
- content: counter(cnt1697198003927);
3292
+ content: counter(cnt1697199714238);
3290
3293
  }
3291
3294
  /*! ****************************/
3292
3295
  /*! DataPolicy stuff */
@@ -16,12 +16,12 @@
16
16
  x-on:keydown.escape.prevent.stop="close($refs.button)"
17
17
  x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
18
18
  x-id="['dropdown-button']"
19
- class="flex flex-col h-10 w-fit z-100"
19
+ class="z-50 flex flex-col h-10 w-fit"
20
20
  >
21
21
 
22
22
  {{!-- Button --}}
23
23
  {{#with this}}
24
- {{#> components/button/button _size="md" _disableButtonPress=true}}
24
+ {{#> components/button/button _size="md" _disableButtonPress=true _css="w-fit" }}
25
25
  {{>components/button/components/button_label _label="Abonnieren" _css="flex-1 text-left truncate mr-2" _type="button"}}
26
26
  <span x-cloak x-show="open" class="inline-flex w-3 h-3">
27
27
  {{> components/base/image/icon _icon='arrow-up' _addClass="mt-[1px] w-3 h-3 fill-white" }}
@@ -16,12 +16,12 @@
16
16
  x-on:keydown.escape.prevent.stop="close($refs.button)"
17
17
  x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
18
18
  x-id="['dropdown-button']"
19
- class="flex flex-col h-10 w-fit z-100"
19
+ class="z-50 flex flex-col h-10 w-fit"
20
20
  >
21
21
 
22
22
  {{!-- Button --}}
23
23
  {{#with this}}
24
- {{#> components/button/button _size="md" _disableButtonPress=true}}
24
+ {{#> components/button/button _size="md" _disableButtonPress=true _css="w-fit" }}
25
25
  {{>components/button/components/button_label _label="Abonnieren" _css="flex-1 text-left truncate mr-2" _type="button"}}
26
26
  <span x-cloak x-show="open" class="inline-flex w-3 h-3">
27
27
  {{> components/base/image/icon _icon='arrow-up' _addClass="mt-[1px] w-3 h-3 fill-white" }}
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.42.1",
9
+ "version": "1.42.2",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -16,12 +16,12 @@
16
16
  x-on:keydown.escape.prevent.stop="close($refs.button)"
17
17
  x-on:focusin.window="! $refs.panel.contains($event.target) && close()"
18
18
  x-id="['dropdown-button']"
19
- class="flex flex-col h-10 w-fit z-100"
19
+ class="z-50 flex flex-col h-10 w-fit"
20
20
  >
21
21
 
22
22
  {{!-- Button --}}
23
23
  {{#with this}}
24
- {{#> components/button/button _size="md" _disableButtonPress=true}}
24
+ {{#> components/button/button _size="md" _disableButtonPress=true _css="w-fit" }}
25
25
  {{>components/button/components/button_label _label="Abonnieren" _css="flex-1 text-left truncate mr-2" _type="button"}}
26
26
  <span x-cloak x-show="open" class="inline-flex w-3 h-3">
27
27
  {{> components/base/image/icon _icon='arrow-up' _addClass="mt-[1px] w-3 h-3 fill-white" }}