@libs-ui/components-datetime-picker 0.2.356-9 → 0.2.357-1

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.
@@ -1,5 +1,6 @@
1
1
  import * as dayjs from 'dayjs';
2
2
  import { ISplitPickerDate } from './calendar-variables.interface';
3
+ type T_calendarDate = string | dayjs.Dayjs | undefined;
3
4
  export interface IEmitDateCalendar {
4
5
  displayLabel?: string;
5
6
  startDate: dayjs.Dayjs | undefined;
@@ -8,7 +9,7 @@ export interface IEmitDateCalendar {
8
9
  }
9
10
  export interface IEmitSingleDate {
10
11
  displayLabel?: string;
11
- date: string | dayjs.Dayjs | undefined;
12
+ date: T_calendarDate;
12
13
  values?: {
13
14
  month: string | number;
14
15
  year: string | number;
@@ -20,6 +21,7 @@ export interface IEmitSingleDate {
20
21
  export interface IEmitDateRange {
21
22
  quickRangeId?: string;
22
23
  displayLabel?: string;
23
- startDate: string | dayjs.Dayjs | undefined;
24
- endDate: string | dayjs.Dayjs | undefined;
24
+ startDate: T_calendarDate;
25
+ endDate: T_calendarDate;
25
26
  }
27
+ export {};
@@ -31,6 +31,6 @@ export interface ICheckTimepickerSelected {
31
31
  rightyear: boolean;
32
32
  }
33
33
  export interface ISelectedOld {
34
- start?: dayjs.Dayjs | undefined;
35
- end?: dayjs.Dayjs | undefined;
34
+ start?: dayjs.Dayjs;
35
+ end?: dayjs.Dayjs;
36
36
  }
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@libs-ui/components-datetime-picker",
3
- "version": "0.2.356-9",
3
+ "version": "0.2.357-1",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=18.0.0",
6
- "@libs-ui/components-buttons-button": "0.2.356-9",
7
- "@libs-ui/components-dropdown": "0.2.356-9",
8
- "@libs-ui/components-inputs-input": "0.2.356-9",
9
- "@libs-ui/components-list": "0.2.356-9",
10
- "@libs-ui/components-popover": "0.2.356-9",
11
- "@libs-ui/interfaces-types": "0.2.356-9",
12
- "@libs-ui/services-http-request": "0.2.356-9",
13
- "@libs-ui/utils": "0.2.356-9",
6
+ "@libs-ui/components-buttons-button": "0.2.357-1",
7
+ "@libs-ui/components-dropdown": "0.2.357-1",
8
+ "@libs-ui/components-inputs-input": "0.2.357-1",
9
+ "@libs-ui/components-list": "0.2.357-1",
10
+ "@libs-ui/components-popover": "0.2.357-1",
11
+ "@libs-ui/interfaces-types": "0.2.357-1",
12
+ "@libs-ui/services-http-request": "0.2.357-1",
13
+ "@libs-ui/utils": "0.2.357-1",
14
14
  "@ngx-translate/core": "^15.0.0",
15
15
  "dayjs": "1.11.5",
16
- "@libs-ui/components-label": "0.2.356-9"
16
+ "@libs-ui/components-label": "0.2.357-1"
17
17
  },
18
18
  "sideEffects": false,
19
19
  "module": "fesm2022/libs-ui-components-datetime-picker.mjs",
@@ -20,7 +20,7 @@ export declare class LibsUiComponentsDatetimePickerComponent implements OnInit,
20
20
  end?: Dayjs;
21
21
  };
22
22
  protected displayRangeTitle: import("@angular/core").Signal<TYPE_RANGE_KEY | undefined>;
23
- private popoverFunctionControlEvent;
23
+ private readonly popoverFunctionControlEvent;
24
24
  /** INPUT */
25
25
  readonly dateOptions: import("@angular/core").InputSignalWithTransform<LocalizationConfig, LocalizationConfig | undefined>;
26
26
  readonly showCustomRangeLabel: import("@angular/core").InputSignalWithTransform<boolean, boolean>;