@colijnit/corecomponents_v12 12.2.11 → 12.2.12

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.
@@ -3,7 +3,7 @@
3
3
 
4
4
  .date-picker-container {
5
5
  position: fixed;
6
- z-index: 999;
6
+ z-index: $cc-co-calendar-z-index;
7
7
  }
8
8
  }
9
9
 
@@ -43,3 +43,4 @@ $cc-co-calendar-selected-day-start-border-radius: 100% 0 0 100% !default;
43
43
  $cc-co-calendar-selected-day-end-border-radius: 0 100% 100% 0 !default;
44
44
  $cc-co-calendar-selection-grid-gap: 15px !default;
45
45
  $cc-co-calendar-selection-grid-padding: 5px !default;
46
+ $cc-co-calendar-z-index: 9999 !default;
@@ -45,6 +45,14 @@
45
45
  width: 50vw;
46
46
  }
47
47
  }
48
+ .dialog-drag-handle {
49
+ display: flex;
50
+ width: 100%;
51
+ height: $cc-co-dialog-drag-handle-height;
52
+ position: absolute;
53
+ top: 0;
54
+ left: 0;
55
+ }
48
56
  .dialog-header {
49
57
  display: flex;
50
58
  flex-direction: row;
@@ -1,6 +1,7 @@
1
1
  $cc-co-dialog-font-family: $cc-font-family !default;
2
2
  $cc-co-dialog-font-size: $cc-font-size-default !default;
3
3
  $cc-co-dialog-padding: 30px !default;
4
+ $cc-co-dialog-drag-handle-height: 30px !default;
4
5
  $cc-co-dialog-header-font-family: $cc-font-family !default;
5
6
  $cc-co-dialog-header-font-size: $cc-font-size-default !default;
6
7
  $cc-co-dialog-header-font-weight: normal !default;
@@ -3,7 +3,7 @@
3
3
  .dual-calendar-wrapper {
4
4
  position: fixed;
5
5
  display: flex;
6
- z-index: 19;
6
+ z-index: 999;
7
7
  .date-picker-container {
8
8
  position: inherit;
9
9
  height: 100%;
@@ -1,9 +1,14 @@
1
+ import { ElementRef } from '@angular/core';
1
2
  import { BaseInputDatePickerDirective } from "../base-input-date-picker/base-input-date-picker.directive";
2
3
  export declare class InputDateRangePickerComponent extends BaseInputDatePickerDirective {
3
4
  firstDateAsString: any;
4
5
  secondDateAsString: any;
5
6
  private _doubleCalendarComponentRef;
7
+ firstInput: ElementRef;
8
+ secondInput: ElementRef;
6
9
  showClass(): boolean;
10
+ handleFirstInputClick(event: Event): void;
11
+ handleSecondInputClick(event: Event): void;
7
12
  handleDatesSelected(dates: Date[]): void;
8
13
  handleSecondDateSelected(): void;
9
14
  clearDate(index: number): void;
@@ -1,7 +1,7 @@
1
1
  import { ElementRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { OverlayParentDirective } from './overlay-parent.directive';
3
3
  export declare class OverlayDirective implements OnDestroy, OnInit {
4
- set parent(value: OverlayParentDirective | ElementRef);
4
+ set parent(value: OverlayParentDirective | ElementRef | HTMLElement);
5
5
  view: HTMLElement;
6
6
  /**
7
7
  * true; Element is added to the parent template
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.2.11",
3
+ "version": "12.2.12",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {