@aquera/nile-elements 0.0.76 → 0.0.77

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "0.0.76",
6
+ "version": "0.0.77",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -873,7 +873,9 @@ export class NileCalendar extends NileElement {
873
873
  ? html`
874
874
  <div class="calender-input">
875
875
  <div>
876
- <span class="manual-input-label">From </span>
876
+ <span class="manual-input-label ${this.hideInput && this.hideTimeInput
877
+ ? 'hidden'
878
+ : ''}">From </span>
877
879
  <div class="from">
878
880
  ${!this.hideInput ? html`<nile-input class="manual-input" value="${this.formatDate(
879
881
  this.startDate
@@ -891,7 +893,9 @@ export class NileCalendar extends NileElement {
891
893
  </div>
892
894
 
893
895
  <div>
894
- <span class="manual-input-label">To </span>
896
+ <span class="manual-input-label ${this.hideInput && this.hideTimeInput
897
+ ? 'hidden'
898
+ : ''}">To </span>
895
899
  <div class="from">
896
900
  ${!this.hideInput ? html`<nile-input class="manual-input" value="${this.formatDate(
897
901
  this.endDate
@@ -118,8 +118,8 @@ export const styles = css`
118
118
  }
119
119
 
120
120
  .tab-group--top .tab-group__indicator {
121
- bottom: calc(-1 * var(--track-width));
122
- border-bottom: 2px solid var(--nile-colors-brand-600);
121
+ bottom: 2px;
122
+ border-bottom: 2px solid var(--nile-colors-primary-600);
123
123
  }
124
124
 
125
125
  .tab-group--top .tab-group__body {