hr-design-system-handlebars 1.83.9 → 1.83.10

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.83.10 (Tue Jul 23 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - :rewind: [#1027](https://github.com/mumprod/hr-design-system-handlebars/pull/1027) ([@Sunny1112358](https://github.com/Sunny1112358))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@Sunny1112358](https://github.com/Sunny1112358)
10
+
11
+ ---
12
+
1
13
  # v1.83.9 (Tue Jul 23 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1687,9 +1687,6 @@ article.indexTextDS .indexTextHighlighted .link {
1687
1687
  .w-15\/12 {
1688
1688
  width: 120%;
1689
1689
  }
1690
- .w-16 {
1691
- width: 4rem;
1692
- }
1693
1690
  .w-2 {
1694
1691
  width: 0.5rem;
1695
1692
  }
@@ -1702,6 +1699,9 @@ article.indexTextDS .indexTextHighlighted .link {
1702
1699
  .w-22 {
1703
1700
  width: 5.5rem;
1704
1701
  }
1702
+ .w-24 {
1703
+ width: 6rem;
1704
+ }
1705
1705
  .w-3 {
1706
1706
  width: 0.75rem;
1707
1707
  }
@@ -2323,10 +2323,6 @@ article.indexTextDS .indexTextHighlighted .link {
2323
2323
  --tw-bg-opacity: 1;
2324
2324
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity));
2325
2325
  }
2326
- .bg-black {
2327
- --tw-bg-opacity: 1;
2328
- background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
2329
- }
2330
2326
  .bg-black\/\[0\.5\] {
2331
2327
  background-color: rgba(0, 0, 0, 0.5);
2332
2328
  }
@@ -3096,10 +3092,6 @@ article.indexTextDS .indexTextHighlighted .link {
3096
3092
  color: #606060;
3097
3093
  color: var(--color-secondary-ds);
3098
3094
  }
3099
- .text-slate-500 {
3100
- --tw-text-opacity: 1;
3101
- color: rgba(100, 116, 139, var(--tw-text-opacity));
3102
- }
3103
3095
  .text-stageLink {
3104
3096
  color: #006eb7;
3105
3097
  color: var(--color-stage-link);
@@ -3330,7 +3322,7 @@ article.indexTextDS .indexTextHighlighted .link {
3330
3322
  border-bottom-color: var(--color-secondary-ds);
3331
3323
  }
3332
3324
  .counter-reset {
3333
- counter-reset: cnt1721741569557;
3325
+ counter-reset: cnt1721748234466;
3334
3326
  }
3335
3327
  .hyphens-auto {
3336
3328
  -webkit-hyphens: auto;
@@ -3738,7 +3730,7 @@ article.indexTextDS .indexTextHighlighted .link {
3738
3730
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3739
3731
  }
3740
3732
  .-ordered {
3741
- counter-increment: cnt1721741569557 1;
3733
+ counter-increment: cnt1721748234466 1;
3742
3734
  }
3743
3735
  .-ordered::before {
3744
3736
  position: absolute;
@@ -3754,7 +3746,7 @@ article.indexTextDS .indexTextHighlighted .link {
3754
3746
  letter-spacing: .0125em;
3755
3747
  --tw-text-opacity: 1;
3756
3748
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3757
- content: counter(cnt1721741569557);
3749
+ content: counter(cnt1721748234466);
3758
3750
  }
3759
3751
  /*! ****************************/
3760
3752
  /*! DataPolicy stuff */
@@ -11,7 +11,7 @@
11
11
  <div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
12
12
  this.isCurrentMonth}} -currentMonth{{/if}}{{#if
13
13
  this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
14
- <span class="block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if this.isCurrentMonth }} bg-black text-white {{else}}text-slate-500{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
14
+ <span class="block font-heading font-bold w-24 sticky left-0 px-2 py-3">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
15
15
  <ul class="flex">
16
16
  {{#each this.days}}
17
17
  <li class="inline-block h-full group cursor-pointer js-ns-item{{#if
@@ -11,7 +11,7 @@
11
11
  <div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
12
12
  this.isCurrentMonth}} -currentMonth{{/if}}{{#if
13
13
  this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
14
- <span class="block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if this.isCurrentMonth }} bg-black text-white {{else}}text-slate-500{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
14
+ <span class="block font-heading font-bold w-24 sticky left-0 px-2 py-3">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
15
15
  <ul class="flex">
16
16
  {{#each this.days}}
17
17
  <li class="inline-block h-full group cursor-pointer js-ns-item{{#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.83.9",
9
+ "version": "1.83.10",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -11,7 +11,7 @@
11
11
  <div class="inline-block items-center justify-center border-event-calendar-secondary border-l js-ns-month {{#if
12
12
  this.isCurrentMonth}} -currentMonth{{/if}}{{#if
13
13
  this.hasFutureEventsFromNow}} -selected{{else}} js-fr-reload-trigger{{/if}}">
14
- <span class="block font-heading font-bold w-16 sticky left-0 px-2 py-3 {{#if this.isCurrentMonth }} bg-black text-white {{else}}text-slate-500{{/if}}">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
14
+ <span class="block font-heading font-bold w-24 sticky left-0 px-2 py-3">{{this.date.monthNameShort}} {{this.date.yearShort}}</span>
15
15
  <ul class="flex">
16
16
  {{#each this.days}}
17
17
  <li class="inline-block h-full group cursor-pointer js-ns-item{{#if